Skip to content

Instantly share code, notes, and snippets.

@augustohp
Created April 7, 2012 02:56
Show Gist options
  • Save augustohp/2324686 to your computer and use it in GitHub Desktop.
Save augustohp/2324686 to your computer and use it in GitHub Desktop.
Fix authors in a given commit
# http://code.google.com/p/rhythmbox-shoutcast/wiki/GitFixAuthor
git filter-branch --commit-filter '
if [ "$GIT_AUTHOR_NAME" = "axet" ];
then
GIT_AUTHOR_NAME="Alexey Kuznetsov";
GIT_AUTHOR_EMAIL="<[email protected]>";
git commit-tree "$@";
else
git commit-tree "$@";
fi' -- --all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment