Modify Git Log Mail
Git
Tricks
Use the following command to replace commit email and author information:
git filter-branch --env-filter '
if [ "$GIT_COMMITTER_EMAIL" = "old@example.com" ]
then
export GIT_COMMITTER_NAME="new"
export GIT_COMMITTER_EMAIL="new@example.com"
fi
if [ "$GIT...