up vote 4 down vote favorite
1
share [g+] share [fb]

Possible Duplicate:
How can I commit only part of a file in git

I have made several changes to a file and have also added it to the git index. While committing the file I realized that I actually have changes which should go in separate commits with other files.

Is there a way to commit only specific parts of this file in Git?

link|improve this question

feedback

closed as exact duplicate by Jonathan Leffler, bazmegakapa, cHao, Bala R, ConcernedOfTunbridgeWells Jun 17 '11 at 15:35

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

2 Answers

up vote 11 down vote accepted

Use:

git add -i

to add files interactively. This will allow you to stage only the parts of the files you wish to commit. More info here, and a decent tutorial here.

link|improve this answer
3  
You can also run 'git add --patch' to skip directly to selecting hunks. – William Pursell Jul 26 '09 at 14:11
feedback

Use git gui, it can add only specific parts of a file to the index. I think you can do it using git add -i (interactive mode) too, but I've never used it.

link|improve this answer
For me "git gui" is easier to use than "git add --interactive". – Jakub NarÄ™bski Jul 23 '09 at 17:40
Just tried --interactive and got completely lost. git gui did it for me, nice and easy! :) – Brendon Muir Apr 19 '11 at 3:15
feedback

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