I need to over-write/update Author in my entire master branch git repo.
I know I can do this one by one
git commit --amend --author="John Doe <[email protected]>" --no-edit
git push -f
but that will take me weeks.
Is there a faster way to update all the commits Author in the master branch?