主人在起源/主人之前是1

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

  • 使用Git 9的答案将最近的提交移到新分支

  • 如果你开始如下:

    O - O - 0 - C
               __ *master*
            |
       origin/master
    

    你需要分支

    git branch <branchname>
    
    O - O - 0 - C
               __ *master*, branchname
            |
       origin/master
    

    现在将主设备重置为原点/主设备

    git reset --hard origin/master
    
    O - O - 0 - C
               __ branchname
            |
       origin/master, *master*
    

    如果你想在新的分支

    git checkout branchname
    
    O - O - 0 - C
               __ *branchname*
            |
       origin/master, master
    
    链接地址: http://www.djcxy.com/p/4291.html

    上一篇: Master is 1 ahead of origin/master

    下一篇: git: how to turn a clone into a new branch?