批量修改 Git 仓库中的 commit author email
安装#
修改#
将 [email protected]
修改为 [email protected]
git filter-repo --email-callback 'return email if email != b"[email protected]"else b"[email protected]"'
注意#
修改后需要强制推送才能修改远程仓库 git push -f
批量修改 Git 仓库中的 commit author email
将 [email protected]
修改为 [email protected]
git filter-repo --email-callback 'return email if email != b"[email protected]"else b"[email protected]"'
修改后需要强制推送才能修改远程仓库 git push -f