美文网首页
git 分支常命令

git 分支常命令

作者: unknown_7 | 来源:发表于2017-01-06 09:59 被阅读0次
    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
    

    相关文章

      网友评论

          本文标题:git 分支常命令

          本文链接:https://www.haomeiwen.com/subject/kuptbttx.html