Git 内网提交需要校验企业邮箱,但有时邮箱设置错误导致 commit 的邮箱有问题,此时可以通过修改已提交记录中的邮箱来修复,无需重新提交。 经过检索,发现两种方法,分别适用于修改一次和修改多次,引文在最后都有注明。

修改最近一次提交的邮箱

  1. $ git commit --amend --author="NewAuthor <NewEmail@address.com>"

批量修改邮箱

使用该脚本,替换其中 [Your Old Email] [Your New Author Name] [Your New Email] 之后在 git 目录中执行即可。
  1. #!/bin/sh
  2. git filter-branch --env-filter '
  3. an="$GIT_AUTHOR_NAME"
  4. am="$GIT_AUTHOR_EMAIL"
  5. cn="$GIT_COMMITTER_NAME"
  6. cm="$GIT_COMMITTER_EMAIL"
  7. if [ "$GIT_COMMITTER_EMAIL" = "[Your Old Email]" ]
  8. then
  9. cn="[Your New Author Name]"
  10. cm="[Your New Email]"
  11. fi
  12. if [ "$GIT_AUTHOR_EMAIL" = "[Your Old Email]" ]
  13. then
  14. an="[Your New Author Name]"
  15. am="[Your New Email]"
  16. fi
  17. export GIT_AUTHOR_NAME="$an"
  18. export GIT_AUTHOR_EMAIL="$am"
  19. export GIT_COMMITTER_NAME="$cn"
  20. export GIT_COMMITTER_EMAIL="$cm"

Q&A

  • A previous backup already exists in refs/original/
  1. Cannot create a new backup.
  2. A previous backup already exists in refs/original/
  3. Force overwriting the backup with -f
出现这一句说明之前曾经执行过 git filter-branch ,在 refs/original/ 有一个备份,这个时候只要删掉那个备份即可,删除备份命令为:
  1. $ git update-ref -d refs/original/refs/heads/master
  2. # 或
  3. $ git filter-branch -f --tree-filter -f 'rm -f test' -- --all