If I committed to github with a wrong local credentials (username and password), will it be possible to change the committer name on github? This issue can happen if you have tw
You can change the last commit locally with
git commit --amend --author="Author Name "
Then do a
git push --force
This will force the authored commit over the top of the old one.