I want to change the email information of the last 3 commits. Here are my steps:
$git config --system user.email 'my-email'
$git config --global user.email 'my-email'
$git rebase -i HEAD~3
And I replace each 'pick' to 'edit' in the pop-up command text editor. And then
$git commit --amend --reset-author
$git reset --reset
No rebase in progress?
And git log shows only the last commit is changed.
I don't have any idea that what is going wrong since all the steps are introduced in the Pro Git book.
BR/PRC
