Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

There's git add -p to stage changes and git checkout -p to discard changes interactively. Why isn't there git unstage -p ? (I mean, git reset HEAD -p) to unstage changes from index by hunks.

share|improve this question
Are you wondering why you must type git reset HEAD -p instead of git unstage -p? The reset -p command has existed since 1.6.5. – Josh Lee Sep 7 '11 at 16:30

closed as not constructive by bmargulies, svick, Robert Harvey Sep 8 '11 at 4:27

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 7 down vote accepted

If I am not mistaken, what you want is to unstage hunks interactively? I thought git reset -p does exactly that. Its prompt message is even exactly like Unstage this hunk?

Also from the manual:

This means that git reset -p is the opposite of git add -p, i.e. you can use it to selectively reset hunks. See the “Interactive Mode” section of git-add(1) to learn how to operate the --patch mode.

share|improve this answer
It's a shame that i missed this bit in the docs. Sorry, guys. – Dziamid Sep 8 '11 at 9:03

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