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.
|
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. |
||||
|
|
|
You can do
|
|||||||||||||||||||||
|
|
You can use 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 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. |
||||
|
|
|
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 |
|||
|
|
|
Tried out |
|||
|
|
|
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. |
|||||||
|