当我开始使用git时,我只是做了一个,git init
然后开始调用add
和commit
。现在,我开始关注,可以看到我的提交显示为cowens@localmachine
,而不是我想要的地址。似乎在进行设置,GIT_AUTHOR_EMAIL
并且GIT_COMMITTER_EMAIL
可以执行我想要的操作,但是我仍然使用错误的电子邮件地址/名称来保留那些旧提交。我该如何纠正旧的提交?
当我开始使用git时,我只是做了一个,git init
然后开始调用add
和commit
。现在,我开始关注,可以看到我的提交显示为cowens@localmachine
,而不是我想要的地址。似乎在进行设置,GIT_AUTHOR_EMAIL
并且GIT_COMMITTER_EMAIL
可以执行我想要的操作,但是我仍然使用错误的电子邮件地址/名称来保留那些旧提交。我该如何纠正旧的提交?
Answers:
您可以返回并通过一次调用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获得更多信息
if [ "$GIT_AUTHOR_EMAIL" = "$oldemail" ]; then GIT_AUTHOR_EMAIL="$newemail"; fi
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
### 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
git
在Stack Overflow上最好询问有关出于类似目的使用的问题。