Closed Bouke closed 3 years ago
Try all
instead of All
.
There is a bug in the arg parsing where values are CamelCase instead of kebab-case like the config.
Also doesn't work:
$ git config stack.stack Descendants
$ git config stack.stack
Descendants
$git stack --dump-config - | grep stack=
stack=All
So there are a couple of bugs here.
--dump-config -
is showing All
which is an invalid valid and should show all
. This was fixed in https://github.com/epage/git-stack/pull/101git stack -h
shows All
instead of `all. This was fixed in https://github.com/epage/git-stack/pull/101The first two bugs make it easy to think you can do
git config stack.stack All
or
git config stack.stack Descendants
But these are invalid values (should be all
and descendants
) and we ignore invalid values and fallback to defaults.
I just release v0.4.1 which includes #108
Working great, thanks!
Description
I'm trying to change the default
--stack
argument todescendants
to reduce the amount of output generated bygit stack
. I believe this should work, but I can't seem to get it to work:Version
0.2.9
Steps to reproduce
No response
Actual Behaviour
No response
Expected Behaviour
No response
Debug Output