码迷,mamicode.com
首页 >  
搜索关键字:git    ( 32533个结果
Jhipster实现谷歌第三方登录
Authentication(认证)和Authorization(授权) 开始做谷歌第三方登录之前,需要搞清楚两个概念:authentication(认证)和authorization(授权)。认证关注你是谁,授权关注你能做些什么。 举个例子:去机场登机的时候,乘客手持的机票就是他们的凭证(toke ...
分类:其他好文   时间:2018-06-22 23:54:52    阅读次数:284
Java实现sock5代理服务器
入职练手socks5代理服务器,过程总结一下。 1.下载火狐浏览器,设定代理为socks5代理,地址为127.0.0.1:1080。 2.socks5协议1928,中文版,原版,认真阅读 3.按照协议通过Java开发代理服务器。 4.代码在git上 5.说明:简略版,认证方式是默认的无认证,日志包括 ...
分类:编程语言   时间:2018-06-22 17:48:54    阅读次数:169
git add -A 、git add -u 、 git add . 三种区别
git add -A 提交所有变化 git add -u 提交被修改(modified)和被删除(deleted)文件,不包括新文件(new) git add . 提交新文件(new)和被修改(modified)文件,不包括被删除(deleted)文件 ...
分类:其他好文   时间:2018-06-22 17:39:08    阅读次数:170
Mac014--Sourcetree安装(Git client)
Sourcetree:git client Tool Step1:download address: https://www.sourcetreeapp.com/ Step2:要求username/userpwd :注册即可。 kaixinyufeng@sina.com /kxyfXXXX Step ...
分类:系统相关   时间:2018-06-22 14:48:07    阅读次数:184
git remote add origin错误
如果输入$ Git remote add origin git@github.com:djqiang(github帐号名)/gitdemo(项目名).git 提示出错信息:fatal: remote origin already exists. 解决办法如下: 1、先输入$ git remote r ...
分类:其他好文   时间:2018-06-22 13:45:55    阅读次数:192
[转]Git 撤销操作
二. Git撤消操作 12.1 修改最后一次提交 git commit --amend 1.新建一个文件 2.提交一个之前的更改 3.跟踪这个文件 4.跟前一次一起提交 提示你是否重新编辑提交说明,如果不编辑退出后还是跟之前一样提交 commit 成功 或 git commit -m “” 可以直接 ...
分类:其他好文   时间:2018-06-22 13:36:34    阅读次数:199
git 终端使用
git checkout chenQP (切换到自己创建的本地子仓库)git commit - a - m ”日志” (提交)git push (发布到远程子仓库)git checkout rtb1.1.1 (切换到本地的主仓库)Git pull (获取远程主仓库代码)/// 1如果有冲突需要在xc ...
分类:其他好文   时间:2018-06-22 13:27:34    阅读次数:135
Git报错:Your branch is ahead of 'origin/master' by 1 commit
. commit之后,用git status,打印信息为: # On branch master # Your branch is ahead of 'origin/master' by 1 commit. # nothing to commit (working directory clean) ...
分类:其他好文   时间:2018-06-22 13:21:00    阅读次数:1889
Git操作手册记录
Git使用指南 1.查看历史taggit log --pretty=oneline --abbrev-commit //查看历史tag git tag //查看历史tag git show <tagname> //查看指定tag指的commit内容 git tags --push //推送本地tag ...
分类:其他好文   时间:2018-06-22 13:17:02    阅读次数:142
.net core 2.1 开源项目 COMCMS dnc版本
项目一直从dotnet core 1.1开始,升级到2.0,乃至如今2.1,以后保持继续更新。 但可能只是一个后台,前台的话,到时候看有没有好的模板。 无聊的分割线 项目git仓库:https://github.com/hogenwang/comcms_core 演示地址:http://123.20 ...
分类:Web程序   时间:2018-06-22 11:01:06    阅读次数:180
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!