Answers for "change the author of commits"

1

git change commit author

git rebase -i HEAD~2
 git commit --amend --author="Cesar Bueno <[email protected]>"
 git rebase --continue
Posted by: Guest on August-30-2021
0

git change commit author for all commits

# 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'"
Posted by: Guest on August-05-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language