Skip to content

Instantly share code, notes, and snippets.

@AllanChen
Last active August 7, 2020 08:37
Show Gist options
  • Save AllanChen/1d4a6d52f9220599e1beeda7e6b1f07c to your computer and use it in GitHub Desktop.
Save AllanChen/1d4a6d52f9220599e1beeda7e6b1f07c to your computer and use it in GitHub Desktop.
git rename
#!/bin/sh
git filter-branch --env-filter '
OLD_EMAIL="xxxx@gmail.com"
CORRECT_NAME="www"
CORRECT_EMAIL="www@gmail.com"
if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ]
then
export GIT_COMMITTER_NAME="$CORRECT_NAME"
export GIT_COMMITTER_EMAIL="$CORRECT_EMAIL"
fi
if [ "$GIT_AUTHOR_EMAIL" = "$OLD_EMAIL" ]
then
export GIT_AUTHOR_NAME="$CORRECT_NAME"
export GIT_AUTHOR_EMAIL="$CORRECT_EMAIL"
fi
' --tag-name-filter cat -- --branches --tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment