xxxxxxxxxx
git rebase -i HEAD~2
git commit --amend --author="Cesar Bueno <cesar.bueno.tx@gmail.com>"
git rebase --continue
xxxxxxxxxx
# 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'"
xxxxxxxxxx
git commit --amend --author="Author Name <email@address.com>" --no-edit
xxxxxxxxxx
$ git commit --amend --author="John Doe <john@doe.org>" --no-edit
$ git rebase --continue
xxxxxxxxxx
git rebase -i --root --exec 'git commit --amend --reset-author --no-edit'
xxxxxxxxxx
Reset your username to the config globally: git config --global user.name example.
Reset your email to the config globally: git config --global user.email example@email.com.
Now reset the author of your commit without edit required: git commit --amend --reset-author --no-edit.
xxxxxxxxxx
git commit --amend --author="Muhammad Faisal Ameen <faisal.ameen@synviz.com>"
after above command edit commit message
press :q to save changes
before push check git history(vs) or git log (cmd)
When changing commit author, or removing private email
git config the proper author info and run:
xxxxxxxxxx
git rebase -i YOUR_SHA -x "git commit --amend --reset-author -CHEAD"
To specify autho info directly
git rebase -i YOUR_SHA -x "git commit --amend --author 'New Name