git分支常用命令
新建分支
git branch testing
切换到其他分支
git checkout testing
新建并切换到分支testing
git checkout -b testing
将iss53分区合并到master分区
$ git checkout master
$ git merge iss53
查看当前分支
$ git branch
通常我们提交git的时候都是
git add .
git commit -m "some str"
git push
这三大步,而实际上,你只需要两条命令就够了,除非有新的文件要被添加进去。
git commit -am "some str"git push
网友评论