Skip to content

Instantly share code, notes, and snippets.

@seanpianka
Created September 14, 2017 21:55
Show Gist options
  • Save seanpianka/dd4dede348c57e4b67f76c94db7b67ea to your computer and use it in GitHub Desktop.
Save seanpianka/dd4dede348c57e4b67f76c94db7b67ea to your computer and use it in GitHub Desktop.
Git script for replacing all the authors within a git repository.
# Save the script below as e.g. ~/.bin/git-replace-author and run it using, e.g:
# git replace-author "John Ssmith" "John Smith" "johnsmith@example.com"
# With no arguments, it updates all commits with your name to use your
# current email address according to Git config.
DEFAULT_NAME="$(git config user.name)"
DEFAULT_EMAIL="$(git config user.email)"
export OLD_NAME="${1:-$DEFAULT_NAME}"
export NEW_NAME="${2:-$DEFAULT_NAME}"
export NEW_EMAIL="${3:-$DEFAULT_EMAIL}"
echo "Old:" $OLD_NAME "<*>"
echo "New:" "$NEW_NAME <$NEW_EMAIL>"
echo "To undo, use: git reset $(git rev-parse HEAD)"
git filter-branch --env-filter \
'if [ "$GIT_AUTHOR_NAME" = "${OLD_NAME}" ]; then
export GIT_AUTHOR_NAME="${NEW_NAME}"
export GIT_AUTHOR_EMAIL="${NEW_EMAIL}"
export GIT_COMMITTER_NAME="${NEW_NAME}"
export GIT_COMMITTER_EMAIL="${NEW_EMAIL}"
fi'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment