Skip to content

Instantly share code, notes, and snippets.

@TravisL12
Forked from anonymous/gist:2523336
Created May 27, 2013 07:29
Show Gist options
  • Save TravisL12/5655643 to your computer and use it in GitHub Desktop.
Save TravisL12/5655643 to your computer and use it in GitHub Desktop.

Revisions

  1. @invalid-email-address Anonymous created this gist Apr 29, 2012.
    25 changes: 25 additions & 0 deletions gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,25 @@
    #!/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_COMMITTER_EMAIL" = "[email protected]" ]
    then
    cn="Your New Committer Name"
    cm="Your New Committer Email"
    fi
    if [ "$GIT_AUTHOR_EMAIL" = "[email protected]" ]
    then
    an="Your New Author Name"
    am="Your New Author Email"
    fi
    export GIT_AUTHOR_NAME="$an"
    export GIT_AUTHOR_EMAIL="$am"
    export GIT_COMMITTER_NAME="$cn"
    export GIT_COMMITTER_EMAIL="$cm"
    '