is there a way to change the email address on a git commit that has been pushed code example
Example: 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'"