1. Change commit author
git commit --amend --author="Name <[email protected]>"
2. Combine multiple commits in single commit after push
git checkout my_branch
git reset --soft HEAD~4
git commit
git push origin +my_branch
OR
git rebase -i origin/master~5 master
git push origin +master