change commit author after push code example
Example 1: change commit author after push
git commit --amend --author="Author Name " --no-edit
Example 2: git change commit id email
$ git config --global user.name "John Doe"
$ git config --global user.email "[email protected]"