Git承诺新分支

这个问题在这里已经有了答案:

  • 将现有的未提交的工作移至Git 4中的新分支

  • 一样。

    之后你可以进行结账(只要它是一个新的分支)。

    3) git checkout new_branch
    4) commit, and it automatically gets put in the new branch
    

    请注意,您也可以在一个命令中创建和签出:

    git checkout -b new_branch
    

    将您的更改提交到当前分支。 然后从当前分支创建一个新分支。

    $ git checkout -b new_branch currentbranch
    

    检查你的currentbranch

    $ git checkout currentbranch
    

    通过1提交重置当前的currentbrach

    $ git reset HEAD~1
    
    链接地址: http://www.djcxy.com/p/23583.html

    上一篇: Git Commit to New Branch

    下一篇: Forgot to branch in git, need to move changes from master