Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

4 Answers

up vote 386 down vote accepted

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

$ git rebase --interactive bbc643cd^

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.

share|improve this answer
28  
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
32  
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
2  
This is really powerful and amazing. Thanks for the tip. – kolrie Apr 21 '12 at 0:01
After running 'git rebase hash^ --interactive', then marking edit on the commit, 'git commit --amend' just shows the commit message - not the actual code. How can I change the code that was committed? Thanks! – nailer Aug 15 '12 at 8:47
@nailer You need first to change 'pick' into 'edit' for the corresponding commit message, after saving the git buffer and quits the editor, your can makes changes to the code. – ZelluX Aug 15 '12 at 9:14
show 4 more comments

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

share|improve this answer
@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 '12 at 12:36
1  
The git tips article has moved to: git.wiki.kernel.org/articles/g/i/t/GitTips_81aa.html – MikeC Feb 8 '12 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 '12 at 12:49
2  
@phils: The Git Wiki is baack!!! So the links should work again. – Jakub Narębski May 15 '12 at 20:15

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:

share|improve this answer

*Follow the steps

$ git rebase < commit > --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 < filename >


$ git commit --amend


$ git rebase --continue

*it will work fine.But the older change sets also changes.So,be careful.

share|improve this answer
your comment is equivalent to @Zellu's but yours in incorrect that it misses the ^ character. – akostadinov Mar 20 at 19:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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