Skip to content

Instantly share code, notes, and snippets.

@WarpEngineer
Created August 17, 2016 12:05
Show Gist options
  • Save WarpEngineer/f0253ba778e47b91c214c5d3c38194b6 to your computer and use it in GitHub Desktop.
Save WarpEngineer/f0253ba778e47b91c214c5d3c38194b6 to your computer and use it in GitHub Desktop.

Revisions

  1. WarpEngineer revised this gist Aug 17, 2016. No changes.
  2. WarpEngineer created this gist Aug 17, 2016.
    17 changes: 17 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    #!/bin/sh

    git filter-branch --env-filter '
    OLD_EMAIL="[email protected]"
    CORRECT_NAME="Your Correct Name"
    CORRECT_EMAIL="[email protected]"
    if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ]
    then
    export GIT_COMMITTER_NAME="$CORRECT_NAME"
    export GIT_COMMITTER_EMAIL="$CORRECT_EMAIL"
    fi
    if [ "$GIT_AUTHOR_EMAIL" = "$OLD_EMAIL" ]
    then
    export GIT_AUTHOR_NAME="$CORRECT_NAME"
    export GIT_AUTHOR_EMAIL="$CORRECT_EMAIL"
    fi
    ' --tag-name-filter cat -- --branches --tags