git使用

参考  http://www.ibloger.net/article/1771.html

切换主分支

git checkout -b master

把dev分支上的内容合并到分支master上了,可以在master分支上,使用如下命令git

merge dev

查看分支合并的情况的话,需要使用命令git log命令行演示如下

git branch develop创建develop分支

git clone https://github.com/tugenhua0707/testgit 从远程库中克隆

你可能感兴趣的:(git使用)