这是一个相关问题如何编辑 git 的历史记录来更正错误的电子邮件地址/名称。使用git rebase -i <first commit>
、和,我能够修复除第一个提交之外的所有提交的日志。如何修复第一个提交?git commit --amend --author "Foo <[email protected]>"
git rebase --continue
答案1
经过多次反复尝试后,发现以下配方是有效的:
# tag the root-most commit so we can reference it
git tag root `git rev-list HEAD | tail -1`
# check it out on its own branch
git checkout -b new-root root
# amend the commit
git commit --amend
# now you've changed the commit message, so checkout the original branch again
git checkout @{-1}
# and rebase it onto your new root commit
git rebase --onto new-root root
# then nuke the temporary branch and tag we created
git branch -d new-root
git tag -d root
对于这个答案,真正的功劳应该归功于#git 上的 drizzd。