美文网首页
Git分支回退到指定提交位置

Git分支回退到指定提交位置

作者: 红红宝宝 | 来源:发表于2021-03-30 15:32 被阅读0次

    步骤:

    1、找到要回退的提交记录编号

    2、执行git reset --hard 提交记录编号

    3、git push -u -f  origin 分支名

    完成回退操作。

    eg:

    git reset --hard f961ced1990c5ef9103f8b69e6a99e41a55e0b95

    git push -u -f  origin develop

    相关文章

      网友评论

          本文标题:Git分支回退到指定提交位置

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