• git revert 撤销之前的提交


    参考 git-revert

    git revert 用来撤销之前的提交,它会生成一个新的 commit id 。

    输入 git revert --help 可以看到帮忙信息。

    git revert commitID

    不编辑新的 commit 说明

    git log 找到需要撤销的 commitID ,

    然后执行 git revert commitID ,会提示如下,
    在这里插入图片描述
    如果不需要编辑 commit 说明,直接 Ctrl + X 退出即可。

    git log 查看,本地已有一条新的提交,并且自带一条提交说明,
    在这里插入图片描述
    git push ,完成。

    编辑新的 commit 说明

    git log 找到需要撤销的 commitID ,

    然后执行 git revert commitID ,会提示如下,
    在这里插入图片描述
    输入需要编辑的信息,
    建议保留原有的这些信息,方便以后查找

        Revert "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
        
        This reverts commit xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1d4f9122f9dc3946a73bad.
    
    • 1
    • 2
    • 3

    如,在这些原有信息前加一行,
    在这里插入图片描述
    编辑完成后 Ctrl + X 退出,会提示是否保存,输入 Y 保存。如果还有提示,回车即可。
    在这里插入图片描述
    git log 查看,本地已有一条新的提交,并且带有我添加的提交说明,
    在这里插入图片描述

    git push ,完成。

    git revert -n commitID

    git revert commitID 会直接进入编辑器,看不到状态,加上 -n 参数可以看到。

           -n, --no-commit
               Usually the command automatically creates some commits with commit log messages stating which commits were reverted. This flag
               applies the changes necessary to revert the named commits to your working tree and the index, but does not make the commits. In
               addition, when this option is used, your index does not have to match the HEAD commit. The revert is done against the beginning state
               of your index.
    
               This is useful when reverting more than one commits' effect to your index in a row.
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    执行 git revert -n commitID 后,git status 查看状态,此时处于 已 git add 未 git commit 的状态。
    在这里插入图片描述
    如果不想继续执行了,用 git revert --abort 放弃本次修改。

    继续执行的话,就用 git revert --continue ,后续步骤和前文的 【git revert commitID 章节】 一致。

    git revert HEAD~3

    帮助信息说明,

    git revert HEAD~3
               Revert the changes specified by the fourth last commit in HEAD and create a new commit with the reverted changes.
    
    • 1
    • 2

    执行后提示如下,
    在这里插入图片描述

    git log 查看,本地生成一条新的提交。

    注意,它 revert 的是第4条提交!!!
    在这里插入图片描述

  • 相关阅读:
    2023华为杯数学建模研赛A题B题C题D题E题F题思路代码成品分享
    JVM内存分配与管理详解
    亚马逊美国站灯具UL认证灯串UL588认证办理
    【数据结构与算法】详解归并
    【附源码】计算机毕业设计SSM网上鲜花店系统
    图像处理之颜色特征描述
    LeetCode 287. 寻找重复数
    产品波士顿矩阵
    Redis 面试题
    住宅IP与普通IP的区别
  • 原文地址:https://blog.csdn.net/weixin_44021334/article/details/133269369