Git: Change author of pushed commits
| #git
- Switch to rebase mode
git rebase -i HEAD~<N> git rebase -i master
- Mark required commits to edit (e)
- Repeat required times
git commit --amend --author="<new author name> <new-author@email.com>" --no-edit git rebase --continue
- Check if everything is ok
git log
- Push changes
git push --force