变更Github上历史commit的用户名和邮箱的方法

2年前 (2022) 程序员胖胖胖虎阿
207 0 0

环境

  • Window 10
  • Git Bash

先确认历史记录

错误的用户名是wrongName,邮箱是wrongMail@example.com

git log --pretty=full

commit 000111000111000111000 (HEAD -> master, origin/master)
Author: wrongName <wrongMail@example.com>
Commit: wrongName <wrongMail@example.com>

变更方法

设置正确的用户名

newName=correctName

设置正确的邮箱

newEmail=correctMail@example.com

修改本地git的提交信息

git filter-branch -f --env-filter "GIT_AUTHOR_NAME='$newName'; GIT_AUTHOR_EMAIL='$newEmail'; GIT_COMMITTER_NAME='$newName'; GIT_COMMITTER_EMAIL='$newEmail';" HEAD

再确认历史记录,发现已经被修改为正确的了

git log --pretty=full

commit 000111000111000111000 (HEAD -> master, origin/master)
Author: correctName <correctMail@example.com>
Commit: correctName <correctMail@example.com>

GitHub

强行push,把刚才修改的提交到github

git push -f
版权声明:程序员胖胖胖虎阿 发表于 2022年10月6日 上午3:24。
转载请注明:变更Github上历史commit的用户名和邮箱的方法 | 胖虎的工具箱-编程导航

相关文章

暂无评论

暂无评论...