Reset authors for multiple Git commits
From Jeff Kreeftmeijer's blog:
If for some reason (like breaking your configuration) you need to reset the author for a number of git commits, rebase with
git-rebase --execand amend each commit:git rebase main --exec 'git commit --amend --reset-author --no-edit'