deso

Git > Reset author in many commits

First update the commit author in your local git config:

git config --global user.name "Robert Lyall"
git config --global user.email "rob@deployhq.com"

Then reset the author of all commits after a specific commit:

git rebase 93jfs8sf --root -x "git commit --amend --reset-author -CHEAD"

20:40 24.08.2022