Skip to content
Alice Waddicor By Alice Waddicor Software Engineering Apprentice III
Using Git for .NET Development: Part 5 – Staging Some Changes In A File But Not Others

I sometimes find myself in a situation where I want to include some, but not all changes in a file in a Git commit.

For example, a colleague uses Visual Studio 2015, whereas I use 2013, so when I open a solution to help out on their project, the .sln file is updated to show my version of Visual Studio. I don't want to check this in, but I do want to include changes in the file such as information about new projects in the solution. Another situation where I might want to select individual changes in a file is where they correspond to two separate pieces of work, which I want to check in separately. For example, it would be nice to keep a change of using statement in a class A which happened because of renaming another file or project B separate from a refactor in class A.

Git does offer a way to do this, which I was first introduced to in a GUI-ified form in Git client SmartGit (thanks Richard).

Staging a subset of changes in a file using SmartGit

To stage some changes but not others using SmartGit, look in the Changes pane, and right click on the changed lines you want to include in your commit.

SmartGit stage hunk

Select Stage Hunk, to stage the highlighted lines.

The file's status will be shown as 'Staged Modified' in the Files pane.

clip_image002

When you commit a set of changes, only the selection you made will be included, and the file will revert to a Modified status.

Staging a subset of changes in a file using Git commands

The Git command that the SmartGit GUI's stage hunk option maps to is --patch, for which there is a short version -p.

To stage a section of a file using Git through the command line, you'd enter:

Git add -p [file name]

This presents you with the first suggested 'hunk' from the file, asks 'Stage this hunk?', and presents a set of options.

clip_image003

The options in the screenshot above are a bit hard to read, so here they are again:

y,n,q,a,d,/,j,J,g,e,?

Not all possible options are displayed for this hunk – for the full set look down!

If the selection is too large, you can split it into smaller selections using the option:

s

(Not visible in the options in the screenshot as the suggested hunk is just one line).

You can continue to use the s command until you are at the level of granularity you need, although according to this Stack Overflow answer from user Mechanical Snail, "this only works if there is at least one unchanged line in the "middle" of the hunk, which is where the hunk will be split"

To stage the hunk, use the option:

y

To leave the hunk unstaged, use the option:

n

The Introduction to Rx.NET 2nd Edition (2024) Book, by Ian Griffiths & Lee Campbell, is now available to download for FREE.

You will then be presented with the next suggested hunk in the file, if it contains any more changes, and the same set of options.

Here are the meanings of the other options:

q - quit; do not stage this hunk or any of the remaining ones

a - stage this hunk and all later hunks in the file

d - do not stage this hunk or any of the later hunks in the file

g - select a hunk to go to

/ - search for a hunk matching the given regex

j - leave this hunk undecided, see next undecided hunk

J - leave this hunk undecided, see next hunk

Programming C# 10 Book, by Ian Griffiths, published by O'Reilly Media, is now available to buy.

k - leave this hunk undecided, see previous undecided hunk

Azure Weekly is a summary of the week's top Microsoft Azure news from AI to Availability Zones. Keep on top of all the latest Azure developments!

K - leave this hunk undecided, see previous hunk

E - manually edit the current hunk

? - print help

I couldn't find anything in the Git docs for the command though the ? Command was helpful. If anyone has a link to the docs, please let me know!

Sign up to the Azure Weekly to receive Azure related news and articles direct to your inbox or follow on Twitter: @azureweekly

Alice Waddicor

Software Engineering Apprentice III

Alice Waddicor

Alice was the second person to complete our Apprenticeship programme.

Alice came from a technical writing background, and re-trained because of an interest in technology, particularly data processing, information extraction, and automation.

During her apprenticeship Alice became passionate about Tech for Good and became an environmental campaigner.

Alice worked at endjin between 2014-2017.