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 "[email protected]" "Correct Name" "[email protected]"
git push --force --tags origin 'refs/heads/*'
Project inspired by a github article.