我需要修改之前一个 commit 的 message,然后我找到了Changing git commit message after push (given that no one pulled from remote) - Stack Overflow的一个回答,我不太理解回答中的以下这段话,请问是什么意思呢?
Note that if you edit your rebase 'plan' yet it doesn't begin the process of letting you rename the files, run:
git rebase --continue
1
shiji 2021-10-17 12:30:11 +08:00 via iPhone 1
可以看看这个帮助
https://docs.github.com/cn/get-started/using-git/using-git-rebase-on-the-command-line 上一步指出要对这几个 commit 做什么( reword ) 因为是交互模式,continue 之后就会根据上一步你的指示开始互动。 |
2
AmoreLee 2021-10-17 12:30:29 +08:00 1
操作一下你就明白了。
执行 git rebase -i HEAD~4 会出现一个页面,让你标记每个 commit 的顺序,是否需要修改信息等。也就是所谓的 ‘plan’,告诉 git 你想对这些提交干啥。 如果你设置好你的 ‘plan’, 但是 rebase 没开始,就执行 git rebase --continue 告诉 git 开始 rebase 就好了。 不过需要注意的是,一旦 rebase 就会改动你的提交记录,如果之前已经提交到远程,rebase 后再想 push 是会报错的。除非你强制推送,但如果别人已经拉取过你的远程仓库,那就会造成很多麻烦。如果只是本地仓库就无所谓了。 |
3
dangyuluo 2021-10-17 12:39:33 +08:00
A<-B<-C<-D<-E<-F<-HEAD,你现在在 HEAD 上,发现 C 里面有个错误。你需要
``` git rebase -i C~1 # or git rebase -iB ``` 然后修改 rebase 命令,把 C 那行的第一个动词改成 e,然后保存。这时候你就到了 C 提交之后的那一刻,修改好之后(我一般`git commit --amend`),再`git rebase --continue`,之后的 DEF 等 commit 就会自动回来,有冲突的话会停在冲突的地方。 rebase 还支持其他命令,自己玩玩就行 |
6
kaneg 2021-10-17 14:42:52 +08:00 via iPhone
如果已经 push 了,正规途径已经无法更改。除非你获取篡改历史的权限:force push 。
|
10
flniu 2021-10-18 13:37:18 +08:00
通常情况下 git push -f 是很少很少很少用到的。。
push 之前随便整,push 之后就不要再想着修改 message 、合并 commit 之类的事情了。否则通知所有人手工修复本地 repo 、手工修复 CI,太麻烦了。 可工作的软件比 git history 更重要吧。 |
11
corningsun 2021-10-18 17:21:41 +08:00
单人提交的分支可以做,如果是多人合作就建议别改了,会被人骂的。
使用 fork 客户端更直接 Interactive Rebase Edit, reorder and squash your commits using visual interactive rebase. https://git-fork.com/ https://git-fork.com/images/interactiveRebase.jpg |