How to modify a specified commit?
I usually submit a list of commits for review. If I have the following commits:
HEAD
Commit3
Commit2
Commit1
...I know that I can modify head commit with git commit --amend
. But how can I modify Commit1
, given that it is not the HEAD
commit?