$ git rebase -i {{base_commit|--root}}
- edit all 'pick' to 'edit' then save
- do following for each commit:
$ git commit --amend --author="Author-Name <[email protected]>"
$ git rebase --continue
$ git config user.name "{{new_name}}"
$ git config user.email "{{new_email}}"
thanks!