I like to use the -p
flag on several git commands, such as add
, reset
, checkout
, and stash
. But git groups somewhat contiguous changes together in the same hunk. I know that s
breaks up the changes but is there another option I could pass to have git break them up by default wherever possible?
Asked
Active
Viewed 49 times
1
1 Answers
0
There are no command line options to accomplish what you want, nor is there a config option. If there were a config option, I would expect to see it in the git-config
documentation alongside the interactive.singlekey option.

frasertweedale
- 5,424
- 3
- 26
- 38
-
I guess I'll just make do without it. – Apr 13 '15 at 01:40
-
It sounds like an interesting feature request - you could ask about it on IRC or the development mailing list. – frasertweedale Apr 13 '15 at 01:42