美文网首页
git branch

git branch

作者: xyzhao | 来源:发表于2014-11-21 14:04 被阅读66次

    在这里整理一些branch操作的一些相关命令

    创建分支


    git branch [分支名]

    将创建好的分支push到远程仓库

    git push origin [分支名]

    给各个子module创建分支并push到仓库的命令如下:

    git submodule foreach git branch [分支名]

    git submodule foreach git push origin [分支名]

    分支改名


    搜索到的内容:Change a branch name in a Git repo - Stack Overflow

    简单整理下:

    在当前分支改名:
    git branch -m newName

    非当前分支改名:
    git branch -m oldName newName

    查看分支状态:
    git branch -a

    修改完本地分支,还需要将本地改变作用到远程:
    git push origin :oldName
    先将远程老的分支删除,然后
    git push origin newName
    将新的分支名称push到远程

    相关文章

      网友评论

          本文标题:git branch

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