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

When I commit changes to a file in git, how can I commit only some of the changes?

Example: commit only 15 lines out of 30 changed lines.

share|improve this question

7 Answers

up vote 408 down vote accepted

You can do git add -p filename.x, and it'll ask you what you want to stage. You can then:

  • hit s to split whatever change into smaller chunks. This only works if there is at least one unchanged line in the "middle" of the hunk, which is where hunk will be split
  • then hit y to stage that chunk
    • or n to not stage that hunk
    • or e to manually edit the chunk (useful when git can't split it automatically)
  • and d to exit or go to the next file.
  • Use ? to get the whole list of available options.
share|improve this answer
4  
enter "n" to NOT stage that hunk. – Elliot Nov 25 '11 at 16:56
4  
And "e" to manually edit the chunk (useful when git can't split it automatically) – rbp Nov 30 '11 at 17:23
37  
And "?" to get the whole list of available options :p – NiKo Dec 9 '11 at 20:25
11  
and use git diff --staged afterwards to check that you staged the correct ones, or git commit -v to view your commit while you edit the commit message – Jonathan Day Oct 10 '12 at 5:56
3  
@MattM. -p stands for patch. The command is a shortcut for git add --patch <filename> – Bruno Lange Feb 7 at 10:17
show 1 more comment

You can use git add --interactive or git add -p <file>, and then git commit (not git commit -a); see Interactive mode in git-add manpage, or simply follow instructions.

If you prefer doing it from GUI, you can use git-gui. You can simply mark chunks which you want to have included in commit. I personally find it easier than using git add -i. Other git GUIs, like QGit or GitX, might also have this functionality as well.

share|improve this answer
1  
Jakub, it was git gui indeed, not gitk. Thanks for correction. – Ionuț G. Stan Jul 6 '09 at 11:56
Links are 404 Not Found. – Denilson Sá Feb 14 '12 at 14:23
@DenilsonSá: after break to kernel.org access to it was reorganized. One of victims was git documentation on kernel.org. Perhaps it would be hosted somewhere on git-scm.com (Git Homepage), with kernel.org redirecting to new location. – Jakub Narębski Feb 15 '12 at 0:00

git gui provides this functionality under the diff view. Just right click the line(s) you're interested in and you should see a "stage this line to commit" menu item.

share|improve this answer

If you are using vim, you may want to try the excellent plugin called fugitive.

You can see the diff of a file between working copy and index with :Gdiff, and then add lines or hunks to the index using classic vim diff commands like dp. Save the modifications in the index and commit with :Gcommit, and you're done.

Very good introductory screencasts here (see esp. part 2).

share|improve this answer

Tried out git add -p filename.x, but on a mac, I found gitx (http://gitx.frim.nl/ or https://github.com/pieter/gitx) to be much easier to commit exactly the lines I wanted to.

share|improve this answer

Should you use emacs, take a look at Magit, which provides a git interface for emacs. It supports staging hunks (parts of files) quite well.

share|improve this answer
1  
The magit docs appear to have moved to here: philjackson.github.com/magit/magit.html – l0st3d Feb 18 at 16:54
Thanks, I've updated the URLs. – Mark van Lent Feb 20 at 7:23

For emacs there is also gitsum

share|improve this answer

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.