我可以在之前的所有提交中更改我的姓名吗?

时间:2010-12-20 21:04:07

标签: git git-filter-branch

我想在我的所有提交中更改我的姓名和电子邮件,是否可能?

6 个答案:

答案 0 :(得分:203)

使用git-filter-branch

git filter-branch --commit-filter 'if [ "$GIT_AUTHOR_NAME" = "Josh Lee" ];
  then export GIT_AUTHOR_NAME="Hobo Bob"; export GIT_AUTHOR_EMAIL=hobo@example.com;
  fi; git commit-tree "$@"'

这仅影响作者,而不影响提交者(对于大多数提交将与作者相同)。如果您也想重写这些,请设置GIT_COMMITTER_NAMEGIT_COMMITTER_EMAIL变量。

有关重写历史的standard warning适用;只做到尚未分享的历史。

2018年6月更新

现在,手册中包含一个使用--env-filter的解决方案示例:https://git-scm.com/docs/git-filter-branch#_examples

git filter-branch --env-filter '
    if test "$GIT_AUTHOR_EMAIL" = "root@localhost"
    then
        GIT_AUTHOR_EMAIL=john@example.com
    fi
    if test "$GIT_COMMITTER_EMAIL" = "root@localhost"
    then
        GIT_COMMITTER_EMAIL=john@example.com
    fi
' -- --all

答案 1 :(得分:53)

在所有选定的提交中重写作者和提交者:

git filter-branch --commit-filter \
'if [ "$GIT_AUTHOR_NAME" = "OldAuthor Name" ]; then \
export GIT_AUTHOR_NAME="Author Name";\
export GIT_AUTHOR_EMAIL=authorEmail@example.com;\
export GIT_COMMITTER_NAME="Commmiter Name";\
export GIT_COMMITTER_EMAIL=commiterEmail@example.com;\
fi;\
git commit-tree "$@"'

答案 2 :(得分:36)

如果没有其他作者,你可以这样做:

git filter-branch --commit-filter 'export GIT_AUTHOR_NAME="authorname"; \
export GIT_AUTHOR_EMAIL=mail@example.com; git commit-tree "$@"'

答案 3 :(得分:12)

将以下脚本保存为例如~/.bin/git-replace-author并使用,例如:

运行它
git replace-author "John Ssmith" "John Smith" "johnsmith@example.com"

没有参数,它会根据Git配置使用您的姓名更新所有提交以使用您当前的电子邮件地址。

DEFAULT_NAME="$(git config user.name)"
DEFAULT_EMAIL="$(git config user.email)"
export OLD_NAME="${1:-$DEFAULT_NAME}"
export NEW_NAME="${2:-$DEFAULT_NAME}"
export NEW_EMAIL="${3:-$DEFAULT_EMAIL}"

echo "Old:" $OLD_NAME "<*>"
echo "New:" "$NEW_NAME <$NEW_EMAIL>"
echo "To undo, use: git reset $(git rev-parse HEAD)"

git filter-branch --env-filter \
'if [ "$GIT_AUTHOR_NAME" = "${OLD_NAME}" ]; then
    export GIT_AUTHOR_NAME="${NEW_NAME}"
    export GIT_AUTHOR_EMAIL="${NEW_EMAIL}"
    export GIT_COMMITTER_NAME="${NEW_NAME}"
    export GIT_COMMITTER_EMAIL="${NEW_EMAIL}"
fi'

Raw(下载)

答案 4 :(得分:2)

只有你没有将你的承诺推向世界。其他明智的是,其他人在他们的回购中都有你的旧名称,这不太可能改变每个人的名字。

答案 5 :(得分:1)

使用Git 2.24(2019年第四季度),git filter-branch (and BFG) is deprecated

相当于使用newren/git-filter-repo及其example section

cd repo
git filter-repo --mailmap my-mailmap

my-mailmap

Correct Name <correct@email.com> <old@email.com>

这将用<old@email.com>

替换任何人所做的任何提交的作者姓名和电子邮件。

有关{p>的确切语法,请参见git shortlog mapping author section