如何编辑git的历史记录以更正不正确的电子邮件地址/名称[关闭]


76

当我开始使用git时,我只是做了一个,git init然后开始调用addcommit。现在,我开始关注,可以看到我的提交显示为cowens@localmachine,而不是我想要的地址。似乎在进行设置,GIT_AUTHOR_EMAIL并且GIT_COMMITTER_EMAIL可以执行我想要的操作,但是我仍然使用错误的电子邮件地址/名称来保留那些旧提交。我该如何纠正旧的提交?


4
对于我们的未来读者:gitStack Overflow上最好询问有关出于类似目的使用的问题。
迈克尔·汉普顿

这是关于stackoverflow.com 的最接近的问题
naught101 '09

Answers:


82

您可以返回并通过一次调用git filter-branch来修复所有提交。这与重新设置具有相同的效果,但是您只需执行一个命令即可修复所有历史记录,而无需单独修复每个提交。

您可以使用以下命令修复所有错误的电子邮件:

git filter-branch --env-filter '
    oldname="(old name)"
    oldemail="(old email)"
    newname="(new name)"
    newemail="(new email)"
    [ "$GIT_AUTHOR_EMAIL"="$oldemail" ] && GIT_AUTHOR_EMAIL="$newemail"
    [ "$GIT_COMMITTER_EMAIL"="$oldemail" ] && GIT_COMMITTER_EMAIL="$newemail"
    [ "$GIT_AUTHOR_NAME"="$oldname" ] && GIT_AUTHOR_NAME="$newname"
    [ "$GIT_COMMITTER_NAME"="$oldname" ] && GIT_COMMITTER_NAME="$newname"
    ' HEAD

可以从git docs获得更多信息


11
好吧,git filter-branch --env-filter'export GIT_AUTHOR_EMAIL =“ foo@example.com”; GIT_AUTHOR_NAME =“ Foo”'非常简单,谢谢。如果我可以更改它,这将是可接受的答案(似乎Server Fault出现错误)。
Chas。欧文斯(Owens)

7
请注意,输出行的等号两边不应有空格。即它们应该看起来像这样:export GIT_AUTHOR_EMAIL =“(正确的电子邮件)”;
Andy Balaam

1
现在,我将如何在Windows上执行此操作?
卡斯滕·施米兹

2
@Deckard:将脚本保存到文本文件(例如fixcommits.sh),然后运行Git Bash并运行脚本。我将脚本文件放在仓库的根目录中,然后导航到Git Bash中的该文件夹,然后使用./fixcommits.sh运行脚本
Avalanchis

2
附录1此命令格式对我不起作用,但如果有效,则适用于:if [ "$GIT_AUTHOR_EMAIL" = "$oldemail" ]; then GIT_AUTHOR_EMAIL="$newemail"; fi
Josh M.

28

Git的filter-branch命令功能强大,但是对于任何不重要的事情(例如,如果您有多个作者需要更正),使用它是极其笨拙的。

这是我发现有用的替代方法,它使用了git-shortlog联机帮助页中介绍的.mailmap功能。这提供了我们可以与git log的格式化工具一起使用的作者映射机制。我们可以使用它来生成命令,以选择并修改命名的提交序列。

例如,假设您要从提交$ START开始更正分支$ BRANCH上的作者身份。

您需要在存储库的顶级目录中创建一个.mailmap文件,该文件将现有作者姓名映射到正确的作者姓名。您可以通过以下方式获取现有作者姓名的列表:

git shortlog -se

您需要以.mailmap文件结尾(例如):

You <you@somewhere.org>   cowens@localmachine
You <you@somewhere.org>   root@localmachine

现在,您可以使用git log的格式化功能来生成命令,以将$ BRANCH重写为$ BRANCH2。

git checkout -b $BRANCH2 $START
git log --reverse --pretty=format:"cherry-pick %H; commit --amend --author='%aN <%aE>' -C %H" $START..$BRANCH | sh - 

第一个命令从提交$ START创建一个新的空分支。对于$ START到$ BRANCH结束之间的每次提交,第二个命令Cherry将原始提交提交到当前分支$ BRANCH2的末尾,并对其进行修改以正确设置作者。

这通常也适用-将其放在〜/ .gitconfig中:

[alias]
    # git reauthor $START..$END
    reauthor = !sh -c 'eval `git log --reverse --topo-order --pretty=format:\"git cherry-pick %H &&  git commit --amend -C %H --author=\\\"%aN <%aE>\\\" && \" $0 ` "echo success" '

因此,当您需要纠正作者时,现在您需要生成一个.mapfile并执行以下操作:

git checkout -b $BRANCH2 $START
git reauthor $START..$BRANCH

可以将原始分支引用重新分配给新分支引用,并删除新分支引用:

git checkout $BRANCH
git reset --hard $BRANCH2 # be careful with this command
git branch -d $BRANCH2

这太棒了。如果我有更多代表,我会赏金的。谢谢:)
pistache

9

结合我如何在git中的第一次提交时修复元信息的答案

### Fix the first commit ###    
# create a temporary tag for the root-most commit so we can reference it
git tag root `git rev-list HEAD | tail -1`
# check it out on its own temporary branch
git checkout -b new-root root
# amend the commit
git commit --amend --author "Foo foo@example.com"
# (or if you've set the proper git **config** values)
git commit --amend -C HEAD --reset-author
# 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
### Fix the rest of the commits ###
git rebase -i root
# edit the file to read "edit <commit number> for each entry
# amend the commit
git commit --amend --author "Foo foo@example.com"
# (or if you've set the proper git **config** values)
git commit --amend -C HEAD --reset-author
# move to the next commit
git rebase --continue    
# continue running the last two commands until you see
# Successfully rebased and updated refs/heads/master.
### Clean up ###
# nuke the temporary branch we created
git branch -d new-root
# nuke the temporary tag we created
git tag -d root

让我走上了正确的轨道,但需要以下命令:stackoverflow.com/a/28536828/307而不是--author用法
Brett Veenstra 2015年

5

要遵循jedberg的回答:您可以使用rebase -i并选择编辑有问题的提交。如果您使用git commit --amend --author <AUTHOR DETAILS>,则git rebase continue可以查看并修复历史记录。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.