Skip to content

Instantly share code, notes, and snippets.

@bjorng
Created May 7, 2009 06:29
Show Gist options
  • Save bjorng/107950 to your computer and use it in GitHub Desktop.
Save bjorng/107950 to your computer and use it in GitHub Desktop.
#!/bin/sh
git filter-branch --env-filter '
an="$GIT_AUTHOR_NAME"
am="$GIT_AUTHOR_EMAIL"
cn="$GIT_COMMITTER_NAME"
cm="$GIT_COMMITTER_EMAIL"
if [ "$GIT_AUTHOR_EMAIL" = "[email protected]" ]
then
am="[email protected]"
fi
if [ "$GIT_AUTHOR_EMAIL" = "[email protected]" ]
then
am="[email protected]"
fi
if [ "$GIT_AUTHOR_EMAIL" = "[email protected]" ]
then
am="[email protected]"
fi
if [ "$GIT_AUTHOR_EMAIL" = "[email protected]" ]
then
am="[email protected]"
fi
if [ "$GIT_AUTHOR_EMAIL" = "[email protected]" ]
then
am="[email protected]"
fi
if [ "$GIT_AUTHOR_EMAIL" = "[email protected]" ]
then
am="[email protected]"
fi
if [ "$GIT_AUTHOR_EMAIL" = "bjorng@a0a82711-911a-0410-9f52-85ee3e23afd8" ]
then
an="Bjorn Gustavsson"
am="<[email protected]>"
fi
if [ "$GIT_COMMITTER_EMAIL" = "[email protected]" ]
then
cm="[email protected]"
fi
if [ "$GIT_COMMITTER_EMAIL" = "[email protected]" ]
then
cm="[email protected]"
fi
if [ "$GIT_COMMITTER_EMAIL" = "[email protected]" ]
then
cm="[email protected]"
fi
if [ "$GIT_COMMITTER_EMAIL" = "[email protected]" ]
then
cm="[email protected]"
fi
if [ "$GIT_COMMITTER_EMAIL" = "[email protected]" ]
then
cm="[email protected]"
fi
if [ "$GIT_COMMITTER_EMAIL" = "[email protected]" ]
then
cm="[email protected]"
fi
if [ "$GIT_COMMITTER_EMAIL" = "bjorng@a0a82711-911a-0410-9f52-85ee3e23afd8" ]
then
cn="Bjorn Gustavsson"
cm="<[email protected]>"
fi
export GIT_AUTHOR_NAME=$an
export GIT_AUTHOR_EMAIL=$am
export GIT_COMMITTER_NAME=$cn
export GIT_COMMITTER_EMAIL=$cm
' --tag-name-filter cat -- --all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment