Created
May 13, 2014 16:32
-
-
Save ifyouseewendy/2e87ce0c32b2fc72009e to your computer and use it in GitHub Desktop.
format git log in batch
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
#!/bin/bash | |
git filter-branch --force --env-filter ' | |
if [ "$GIT_COMMITTER_NAME" = "wendi" ]; | |
then | |
GIT_COMMITTER_EMAIL="[email protected]"; | |
GIT_AUTHOR_EMAIL="[email protected]"; | |
fi' -- --all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment