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.

link|improve this question

feedback

3 Answers

up vote 156 down vote accepted

You can use git rebase, for example, if you want to modify commit bbc643cd, run

$ git rebase bbc643cd^ --interactive

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

$ git add <filepattern>

Now you can use

$ git commit --amend

to modify the commit, and after that

$ git rebase --continue

to return back to the previous head commit.

link|improve this answer
8  
Another interesting option within this flow is once you have moved to the commit you want to modify, instead of modifying files and ammed over the commit on top (the one you're editing), you may want to split that commit into two different commits (or even more). In that case, move back to the commit to edit, and run "git reset HEAD^". that will put the modified files of that commit into the stage. Now pick and commit any files as you wish. This flow is quite well explained in "git-rebase" man page. See section "Splitting commits". bit.ly/d50w1M – Diego Pino Mar 15 '10 at 19:18
8  
In Git 1.6.6 and newer you can use the reword action in git rebase -i instead of edit (it automatically opens the editor and continues with the rest of the rebase steps; this obviates the use of git commit --ammend and git rebase --continue when you only need to change the commit message and not the content). – Chris Johnsen Nov 29 '10 at 3:35
This is really powerful and amazing. Thanks for the tip. – kolrie Apr 21 at 0:01
feedback

https://git.wiki.kernel.org/index.php/GitTips#How_to_change_commits_deeper_in_history, second tip: "How to change commits deeper in history"

link|improve this answer
this link no longer works – phils Dec 28 '11 at 20:51
@phils: Git Wiki since moved to git.wiki.kernel.org, but it doesn't work correctly yet (kernel.org was down due to break-in). – Jakub Narębski Jan 5 at 12:36
The git tips article has moved to: git.wiki.kernel.org/articles/g/i/t/GitTips_81aa.html – MikeC Feb 8 at 19:29
@MikeC: Hopefully it is only temporary. Git Wiki is now in "static" mode for the time being. – Jakub Narębski Feb 9 at 12:49
@phils: The Git Wiki is baack!!! So the links should work again. – Jakub Narębski May 15 at 20:15
feedback

Sorry if I am wrong, but from what I understood reading some git tutorials, I think it would be rebase. Interactive mode (-i) might help. Here is a related article which might help:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.