Как изменить автор GIT
git commit --amend --author="Author Name <email@address.com>" --no-edit
Healthy Horse
git commit --amend --author="Author Name <email@address.com>" --no-edit
# Changes the username and email of all commits from the start.
git rebase -i --root -x "git commit --amend --author='YOUR_USERNAME <user@example.com> --no-edit'"
git rebase -i HEAD~2
git commit --amend --author="Cesar Bueno <cesar.bueno.tx@gmail.com>"
git rebase --continue
git commit --amend --author="John Doe <john@doe.org>"
git rebase -i YOUR_SHA -x "git commit --amend --author 'New Name <new_address@example.com>' -CHEAD"