So ändern Sie GIT -Autor
git commit --amend --author="Author Name <[email protected]>" --no-edit
Healthy Horse
git commit --amend --author="Author Name <[email protected]>" --no-edit
# Changes the username and email of all commits from the start.
git rebase -i --root -x "git commit --amend --author='YOUR_USERNAME <[email protected]> --no-edit'"
git rebase -i HEAD~2
git commit --amend --author="Cesar Bueno <[email protected]>"
git rebase --continue
git commit --author="soft hunt <[email protected]>"
git config --global user.name "John Doe"
git config --global user.email [email protected]
git rebase -i YOUR_SHA -x "git commit --amend --reset-author -CHEAD"