Changing the Git history of your repository using a script with parameters
wget https://raw.githubusercontent.com/pierrechls/changing-author-info/master/git-author-rewrite.sh
chmod +x git-author-rewrite.sh
./git-author-rewrite.sh "old-email@example.com" "Correct Name" "correct-email@example.com"
git push --force --tags origin 'refs/heads/*'
Project inspired by a github article.