Skip to content

Instantly share code, notes, and snippets.

@ifyouseewendy
Created May 13, 2014 16:32
Show Gist options
  • Save ifyouseewendy/2e87ce0c32b2fc72009e to your computer and use it in GitHub Desktop.
Save ifyouseewendy/2e87ce0c32b2fc72009e to your computer and use it in GitHub Desktop.
format git log in batch
#!/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