以如下项目为例,我在提交到 Github 后才发现写错了描述.
https://github.com/Aaron-Bird/dadda-translate-crx/network
只好通过这两条命令修改
git commit --amend -m "要修正的提交描述"
git push origin master
但这样做会导致提交记录凸出来一块
只想改下提交描述,还有更好的解决办法吗?
1
sholmesian 2018-05-24 14:31:20 +08:00 via iPhone 1
git rebase -i head~2
|
2
clino 2018-05-24 14:35:15 +08:00 1
push -f 为什么会突出来一块?
|