/gist:0ac09d61ace38755cac1 Secret
Created
August 10, 2010 18:24
Star
You must be signed in to star a gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git filter-branch --env-filter ' | |
| if [ "$GIT_COMMITTER_NAME" = "<Old Name>" ]; | |
| then | |
| export GIT_COMMITTER_NAME="<New Name>"; | |
| export GIT_AUTHOR_NAME="<New Name>"; | |
| export GIT_COMMITTER_EMAIL="<New Email>"; | |
| export GIT_AUTHOR_EMAIL="<New Email>"; | |
| fi' HEAD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment