Skip to content

Instantly share code, notes, and snippets.

@chao1224
Last active July 6, 2017 23:54
Show Gist options
  • Save chao1224/30446baf2814e7c721bd73de7f131067 to your computer and use it in GitHub Desktop.
Save chao1224/30446baf2814e7c721bd73de7f131067 to your computer and use it in GitHub Desktop.
#!/bin/sh
git filter-branch --force --env-filter '
OLD_EMAIL="xxx"
CORRECT_NAME="chao1224"
CORRECT_EMAIL="shengchao.hacker@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
git push --force --tags origin 'refs/heads/*'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment