Skip to content

Instantly share code, notes, and snippets.

@LazerPanther
Forked from kogakure/gist:205825
Created December 2, 2015 22:49
Show Gist options
  • Save LazerPanther/e7dc64a533e7a05c89e2 to your computer and use it in GitHub Desktop.
Save LazerPanther/e7dc64a533e7a05c89e2 to your computer and use it in GitHub Desktop.
Bash: Git – Rename an email address in all old commits.
# Rename an email address in all old commits.
# WARNING: Will change all your commit SHA1s.
# Based off of the script from here:
# http://coffee.geek.nz/how-change-author-git.html
git filter-branch -f --commit-filter '
if [ "$GIT_COMMITTER_EMAIL" = "joern.zaefferer@googlemail.com" ];
then
GIT_AUTHOR_EMAIL="joern.zaefferer@gmail.com";
GIT_COMMITTER_EMAIL="joern.zaefferer@gmail.com";
git commit-tree "$@";
else
git commit-tree "$@";
fi' HEAD
git push --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment