From: Stefan Beller <sbeller@google.com>
To: Jonathan Nieder <jrnieder@gmail.com>
Cc: Junio C Hamano <gitster@pobox.com>,
"git@vger.kernel.org" <git@vger.kernel.org>,
Jens Lehmann <Jens.Lehmann@web.de>
Subject: Re: [PATCHv4] submodule deinit: require '--all' instead of '.' for all submodules
Date: Thu, 5 May 2016 12:02:31 -0700 [thread overview]
Message-ID: <CAGZ79kbxDbmeh-rTHAqykjLBZ47HAviA11Q9LLYpcwT-Wr9X0A@mail.gmail.com> (raw)
In-Reply-To: <20160504235914.GD395@google.com>
On Wed, May 4, 2016 at 4:59 PM, Jonathan Nieder <jrnieder@gmail.com> wrote:
>>>
>>> Another option would be to call 'usage' and be done.
>>
>> I had that idea as well, but I think pointing out the low level is better
>> than giving the high level again, so the user immediately sees what's wrong.
>
> I mean low level as in implementation detail. The human user would
> wonder "what is incompatible about them? Why are you stopping me from
> what I am trying to do?" Most likely the user was trying to do
> something other than specify a path, since they also passed --all. If
> I run something like
>
>
$ git submodule deinit force --all
error: unknown option `all'
usage: git submodule--helper list [--prefix=<path>] [<path>...]
--prefix <path> alternative anchor for relative paths
`force` is seen as the first pathspec, so "force --all" is given to the
`submodule--helper list`, which gives a less than optimal error message
$ git submodule deinit --all force
gettext: unrecognized option '--all and pathspec are incompatible'
Try 'gettext --help' for more information.
envsubst: unrecognized option '--all and pathspec are incompatible'
Try 'envsubst --help' for more information.
envsubst: unrecognized option '--all and pathspec are incompatible'
Try 'envsubst --help' for more information.
We should not put --all as the first thing in the error message.
$ git submodule deinit --all force
pathspec and --all are incompatible
With the next patch this is the error message. I think the missing
dashes for force are quite visible as force is after --all.
>
> and the output tells me that --all and pathspec are incompatible then
> I just scratch my head more.
>
> We can do
>
> USAGE="$dashless [--quiet] deinit [-f|--force] (--all | [--] <path>...)"
> usage
>
> to print the subcommand's usage. git commandline tools don't
> translate any usage strings today, so not getting translation here
> wouldn't feel out of place.
We can have both? I'd prefer not rewriting the USAGE string here
as it would easily be out of sync in the future?
I tried to just grep the deinit line from the USAGe though, but that doesn't
look right as it would need some post processing. (remove the "or:")
and processing the USAGE string also doesn't sound future proof.
next prev parent reply other threads:[~2016-05-05 19:02 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-04 22:40 [PATCHv4] submodule deinit: require '--all' instead of '.' for all submodules Stefan Beller
2016-05-04 23:08 ` Junio C Hamano
2016-05-04 23:26 ` Jonathan Nieder
2016-05-04 23:38 ` Stefan Beller
2016-05-04 23:59 ` Jonathan Nieder
2016-05-05 18:03 ` Junio C Hamano
2016-05-05 19:20 ` Jonathan Nieder
2016-05-05 19:35 ` Stefan Beller
2016-05-05 19:02 ` Stefan Beller [this message]
2016-05-05 17:59 ` Junio C Hamano
2016-05-05 18:11 ` Stefan Beller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAGZ79kbxDbmeh-rTHAqykjLBZ47HAviA11Q9LLYpcwT-Wr9X0A@mail.gmail.com \
--to=sbeller@google.com \
--cc=Jens.Lehmann@web.de \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jrnieder@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).