Created
March 16, 2009 14:22
-
-
Save gerhard/79900 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 ' | |
| n=$GIT_AUTHOR_NAME | |
| m=$GIT_AUTHOR_EMAIL | |
| case ${GIT_AUTHOR_NAME} in | |
| gerhardl) n="Gerhard Lazu" ; m="mail@gerhardlazu.com" ;; | |
| esac | |
| export GIT_AUTHOR_NAME=$n | |
| export GIT_AUTHOR_EMAIL=$m | |
| export GIT_COMMITTER_NAME=$n | |
| export GIT_COMMITTER_EMAIL=$m | |
| ' master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment