The Author name is wrong, or we need to change it, fast. To fix the Author Name etc on all commits in a github repo, an easy way is

1
2
git rebase -r --root --exec "git commit --amend --no-edit --reset-author"
git push -f

Read all the details on Stackoverflow here