Git如何修改历史的Commit信息

最近由于一行单元测试代码没有写 Assert 断言,导致了项目在 CI 过程中没有通过,于是遭到了某位同事的吐槽,在修改我的代码后写上了一句提交信息。

我想,做为技术人,在技术上应当要有一定的自卫能力,于是我通过本文介绍的技巧修改了该位同事提交的 Commit 信息,效果如下:

其实修改历史提交信息很简单。

一、找到该 Commit 前一条的 Commit ID

例如当前有 3 条提交,使用 git log 查看。

commit e7dc6e4d1001ecff3c1000f82ffffe06859fad61

Author: 张三 <zhangsan@git.com>

Date:   Fri Jun 16 12:25:34 2023 +0800

   fix: 正常的提交信息1

​

commit e0871dfb91f6a0acc5298d9e1960291629479a46

Author: 李四 <lisi@git.com>

Date:   Fri Jun 16 12:20:08 2023 +0800

   fix: fucking the code
​

commit e7dc6e4d1001ecff3c1000f82ffffe06859fad61

Author: 张三 <zhangsan@git.com>

Date:   Thu Jun 15 14:32:49 2023 +0800

   fix: 正常的提交信息2

我们要修改的 Commit 是第二条,于是我们要找的前一条 Commit ID 就是 e7dc6e4d1001ecff3c1000f82ffffe06859fad61

二、git rebase 命令

然后执行 git rebase -i e7dc6e4d1001ecff3c1000f82ffffe06859fad61,会得到下面的内容:

pick e0871dfb91f6a0acc5298d9e1960291629479a46 fix: fucking the code
pick e7dc6e4d1001ecff3c1000f82ffffe06859fad61 fix: 正常的提交信息1

​

# ...

找到需要修改的 commit 记录,把 pick 修改为 edite:wq 保存退出。也就是:

edit e0871dfb91f6a0acc5298d9e1960291629479a46 fix: fucking the code
pick e7dc6e4d1001ecff3c1000f82ffffe06859fad61 fix: 正常的提交信息1

​

# ...

三、修改 commit 的具体信息

执行 git commit --amend,会得到下面的内容:

fix: fucking the code
​

# Please enter the commit message for your changes. Lines starting

# with '#' will be ignored, and an empty message aborts the commit.

#

# Date:      Fri Jun 16 12:20:08 2023 +0800

修改文本内容:

fix: fucking me
​

# Please enter the commit message for your changes. Lines starting

# with '#' will be ignored, and an empty message aborts the commit.

#

# Date:      Fri Jun 16 12:20:08 2023 +0800

保存并继续下一条git rebase --continue,直到全部完成。接着执行 git push -f 推到远端,当然这需要有 Maintainer 权限。

接下来再查看提交日志,git log

commit e7dc6e4d1001ecff3c1000f82ffffe06859fad61

Author: 张三 <zhangsan@git.com>

Date:   Fri Jun 16 12:25:34 2023 +0800

   fix: 正常的提交信息1

​

commit e0871dfb91f6a0acc5298d9e1960291629479a46

Author: 李四 <lisi@git.com>

Date:   Fri Jun 16 12:20:08 2023 +0800

   fix: fucking me
​

commit e7dc6e4d1001ecff3c1000f82ffffe06859fad61

Author: 张三 <zhangsan@git.com>

Date:   Thu Jun 15 14:32:49 2023 +0800

   fix: 正常的提交信息2

修改完成!

不过要提醒的是:技巧仅用自卫,他途谨慎使用。

封面

相关文章

© 版权声明
THE END
喜欢就支持一下吧
点赞0

Warning: mysqli_query(): (HY000/3): Error writing file '/tmp/MYSh2Tv5' (Errcode: 28 - No space left on device) in /www/wwwroot/583.cn/wp-includes/class-wpdb.php on line 2345
admin的头像-五八三
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

图形验证码
取消
昵称代码图片