From: Junio C Hamano <hidden> Date: 2016-06-15 22:47:34
Alex Riesen [off-list ref] writes:
On Sun, Oct 18, 2009 at 10:01, Junio C Hamano [off-list ref] wrote:
quoted
+ OPT_SET_INT(0, "nodwim", &dwim_new_local_branch,
+ "do not dwim local branch creation", 0),
Isn't there a special negation support for --no-something in parse-options?
There probably is, but this is a whetherbaloon patch without documentation
and pretty much Porcelain only, so I took the lazy route.
Helping hands in polishing it up is very welcome.
From: Alex Riesen <hidden> Date: 2016-06-15 22:47:34
The one which guesses local branch name from a remote reference.
Signed-off-by: Alex Riesen <redacted>
---
Junio C Hamano, Sun, Oct 18, 2009 21:53:51 +0200:
Alex Riesen [off-list ref] writes:
quoted
On Sun, Oct 18, 2009 at 10:01, Junio C Hamano [off-list ref] wrote:
quoted
+ OPT_SET_INT(0, "nodwim", &dwim_new_local_branch,
+ "do not dwim local branch creation", 0),
Isn't there a special negation support for --no-something in parse-options?
There probably is, but this is a whetherbaloon patch without documentation
and pretty much Porcelain only, so I took the lazy route.
Helping hands in polishing it up is very welcome.
Maybe like this?
BTW, can parse-options take care of the " (default)" addition?
builtin-checkout.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
@@ -632,8 +632,8 @@ int cmd_checkout(int argc, const char **argv, const char *prefix)OPT_STRING(0,"conflict",&conflict_style,"style","conflict style (merge or diff3)"),OPT_BOOLEAN('p',"patch",&patch_mode,"select hunks interactively"),-OPT_SET_INT(0,"nodwim",&dwim_new_local_branch,-"do not dwim local branch creation",0),+OPT_SET_INT(0,"dwim",&dwim_new_local_branch,+"Guess local branch from remote reference (default)",0),OPT_END(),};inthas_dash_dash;
On Sun, Oct 18, 2009 at 3:53 PM, Junio C Hamano [off-list ref] wrote:
Alex Riesen [off-list ref] writes:
quoted
On Sun, Oct 18, 2009 at 10:01, Junio C Hamano [off-list ref] wrote:
quoted
+ OPT_SET_INT(0, "nodwim", &dwim_new_local_branch,
+ "do not dwim local branch creation", 0),
Isn't there a special negation support for --no-something in parse-options?
There probably is, but this is a whetherbaloon patch without documentation
and pretty much Porcelain only, so I took the lazy route.
Helping hands in polishing it up is very welcome.
I find the idea of an option for "don't do what I mean" to be pretty
entertaining. Or maybe just misleading :)
Have fun,
Avery
On Sun, Oct 18, 2009 at 3:53 PM, Junio C Hamano [off-list ref] wrote:
quoted
Helping hands in polishing it up is very welcome.
I find the idea of an option for "don't do what I mean" to be pretty
entertaining. Or maybe just misleading :)
Have fun,
Avery
As Junio asked for helping hands, let's try to be helpful and constructive.
Maybe "don't second-guess" explains it better?
--
Nanako Shiraishi
http://ivory.ap.teacup.com/nanako3/