最近由于一行单元测试代码没有写 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
修改为 edit
或 e
,: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
修改完成!
不过要提醒的是:技巧仅用自卫,他途谨慎使用。
封面
相关文章
© 版权声明
文章版权归作者所有,未经允许请勿转载,侵权请联系 admin@trc20.tw 删除。
THE END