This Gist contains scripts to update Git author and committer information in the repository history.
# Rewrite All Commits
git filter-branch -f --env-filter '
GIT_AUTHOR_NAME="name"
GIT_AUTHOR_EMAIL="[email protected]"
GIT_COMMITTER_NAME="name"
GIT_COMMITTER_EMAIL="[email protected]"