Skip to content

Instantly share code, notes, and snippets.

@knzconnor
Created October 1, 2009 23:50
Show Gist options
  • Save knzconnor/199332 to your computer and use it in GitHub Desktop.
Save knzconnor/199332 to your computer and use it in GitHub Desktop.
#!/bin/sh
git filter-branch -f --env-filter '
ae=$GIT_AUTHOR_EMAIL
an=$GIT_AUTHOR_NAME
case $GIT_AUTHOR_NAME in
tconnor)
ae="tim.connor@yieldbuild.com"
an="Tim Connor"
;;
other)
ae="other.person@yieldbuild.com"
an="Other Person"
;;
esac
export GIT_AUTHOR_EMAIL=$ae
export GIT_AUTHOR_NAME=$an
export GIT_COMMITTER_EMAIL=$ae
export GIT_COMMITTER_NAME=$an
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment