I usually submit a list of commits for review, so I have a problem:
If I have commit1, commit2, commit3, head.
I know that I can modify head commit with git commit --amend, but how can I modify commit1 that is not head commit.
|
I usually submit a list of commits for review, so I have a problem: If I have commit1, commit2, commit3, head. I know that I can modify head commit with |
||||
|
|
|
You can use git rebase, for example, if you want to modify back to commit bbc643cd, run
In the default editor, modify 'pick' to 'edit' in the line whose commit you want to modify. Make your changes and then stage them with
Now you can use
to modify the commit, and after that
to return back to the previous head commit. |
|||||||||||||||||
|
|
https://git.wiki.kernel.org/index.php/GitTips#How_to_change_commits_deeper_in_history, second tip: "How to change commits deeper in history" |
|||||||||||||
|
|
Sorry if I am wrong, but from what I understood reading some git tutorials, I think it would be rebase. Interactive mode ( |
||||
|
|
|
*Follow the steps
In the default editor, modify 'pick' to 'edit' in the line whose commit you want to modify. Make your changes and then stage them with
*it will work fine.But the older change sets also changes.So,be careful. |
||||
|