git回滚上一版本17-05-31
Git保存密码16-09-09
git 保存密码 for windows
1.First, download git-credential-winstore and install it in your git bin directory.
首先下载git-credential-winstore.exe 然后移动到git的bin目录下
2.Next, make sure that the directory containing git.cmd is in your Path environment variable. The default directory for this is C:\Program Files (x86)\Git\cmd on a 64-bit system o
....
....
git简介--3--多分支开发注意事项16-09-09
Git基本命令 git clone 克隆代码
git branch 分支
git status 当前分支及其操作记录
git diff 代码更改记录
git checkout 检出|切换分支
git add 添加新建文件
git commit -am "提示信息:提交所有修改"
git push origin master|branch-new 推送远程分支多分支开发注意事项1.只改写自己负责的模块,轻易不同改写其他分支负责的代码
*2.养成习惯,每天提交分支
*3.分支push之前先要merge master
*4.merge master之前,先要pull origin master ,实时
....
....
git简介--2--分支重命名16-09-09
git简介--1--基本操作16-09-09
Git基本命令 git clone 克隆代码
git branch 分支
git status 当前分支及其操作记录
git diff 代码更改记录
git checkout 检出|切换分支
git add 添加新建文件
git commit -am "提示信息:提交所有修改"
git push origin master|branch-new 推送远程分支克隆源代码及新创建分支与合并 ##克隆源代码
git clone http://拉取|克隆源代码
##新创建分支与合并
# create a new branch locally
#新创建本地分支并切换至此分支下
#注:养成良好的习惯,任何操作之
....
....