所以我读了很多关于如何更改以前提交的电子邮件地址的信息,但出于某种原因,我没有更新。
我确实喜欢使用我的本地电子邮件(nameofMyComputer@kevin.local)对我的私人仓库进行了40次提交,这很糟糕,因为这封电子邮件与github没有关联(也不可能)。
然后我记得我之前需要设置git.config,所以我做了:
git config user.email "newemail@example.com"
并做了一次测试提交,它运行得很好。
有没有办法可以将之前的所有提交都还原到这封新电子邮件中?
我在SO Change the author and committer name and e-mail of multiple commits in Git上阅读了这个问题并使用了这个
git filter-branch -f --env-filter "
GIT_AUTHOR_EMAIL='kevin.cohen26@gmail.com';
GIT_COMMITTER_EMAIL='kevin.cohen26@gmail.com';
"
HEAD
但它无法正常工作......我仍然可以看到我之前提交的电子邮件,其中.patch扩展名为.local电子邮件地址
答案 0 :(得分:10)
你可以这样做多次提交,就像这样:
git rebase -i HEAD~40 -x "git commit --amend --author 'Author Name <author.name@mail.com>' --no-edit"
我在this answer中更好地解决了这个问题。
答案 1 :(得分:7)
正如您在问题中提到的(您找到的答案的链接),这确实是脚本。
filter-branch
正在进行 rebase ( 重写 分支的历史记录)这意味着每个人都有一份副本分支机构将不得不删除并再次结帐。
脚本来源于此处 - Git-Tools-Rewriting-History:
# Loop over all the commits and use the --commit-filter
# to change only the email addresses
git filter-branch --commit-filter '
# check to see if the committer (email is the desired one)
if [ "$GIT_COMMITTER_EMAIL" = "<Old Email>" ];
then
# Set the new desired name
GIT_COMMITTER_NAME="<New Name>";
GIT_AUTHOR_NAME="<New Name>";
# Set the new desired email
GIT_COMMITTER_EMAIL="<New Email>";
GIT_AUTHOR_EMAIL="<New Email>";
# (re) commit with the updated information
git commit-tree "$@";
else
# No need to update so commit as is
git commit-tree "$@";
fi'
HEAD
循环遍历所有提交,一旦找到匹配,就会替换提交者的名称和电子邮件。
答案 2 :(得分:0)
这是一个基于 Chris Maes' answer 的版本,它仅将更改应用于具有匹配电子邮件地址的提交,并使用 rebase --root
(自 git 1.7 起)从历史记录的开头开始写入。
如果您想选择特定的基础提交,您需要删除 --root
,并使用您想要的 refspec。
function reauthor_all {
if [[ "$#" -eq 0 ]]; then
echo "Incorrect usage, no email given, usage is: $FUNCNAME <email>" 1>&2
return 1
fi
local old_email="$1"
# Based on
# SO: https://stackoverflow.com/a/34863275/9238801
local new_email="$(git config --get user.email)"
local new_name="$(git config --get user.name)"
# get each commit's email address ( https://stackoverflow.com/a/58635589/9238801 )
# I've broken this up into two statements and concatenated
# because I want to delay evaluation
local command='[[ "$(git log -1 --pretty=format:'%ae')" =='
command+=" '$old_email' ]] && git commit --amend --author '$new_name <$new_email>' --no-edit || true"
git rebase -i --root -x "$command"
}
在我自己的仓库中使用:
reauthor_all "personal.email@gmail.com"
hint: Waiting for your editor to close the file...
Press ENTER or type command to continue
Executing: [[ "$(git log -1 --pretty=format:%ae)" == 'personal.email@gmail.com' ]] && git commit --amend --author 'Matthew Strasiotto <39424834+matthewstrasiotto@users.noreply.github.com>' --no-edit || true
Executing: [[ "$(git log -1 --pretty=format:%ae)" == 'personal.email@gmail.com' ]] && git commit --amend --author 'Matthew Strasiotto <39424834+matthewstrasiotto@users.noreply.github.com>' --no-edit || true
[detached HEAD 1e281b5] First Message
...etc
当它最终看起来正确时,您将需要强制推送,这将更改提交 shas,因此这将导致一系列其他问题。