summaryrefslogtreecommitdiff
path: root/builtin/commit-graph.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2022-08-25 06:51:40 -0400
committerJunio C Hamano <gitster@pobox.com>2022-08-25 09:43:30 -0700
commit8f9d80f6c06369b563c76ec46c462e740a1a2cf0 (patch)
treeeadfafe679ae608d3763a895707e3e6254273db8 /builtin/commit-graph.c
parent0d330a53f31a0885954ac48c5e6d24efd3969039 (diff)
remote: run "remote rm" argv through parse_options()
The "git remote rm" command's option parsing is fairly primitive: it insists on a single argument, which it treats as the remote name, and displays a usage message otherwise. This is OK, and maybe even convenient, as you could run: git remote rm --foo to drop a remote named "--foo". But it's also weirdly unlike most of the rest of Git, which would complain that there is no option "--foo". The right way to spell it by our conventions is: git remote rm -- --foo but this doesn't currently work. So let's bring the command in line with the rest of Git (including its sibling subcommands!) by feeding argv to parse_options(). We already have an empty options array for the usage helper. Note that we have to adjust the argc index down by one, as parse_options() eats the program name from the start of the array. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit-graph.c')
0 files changed, 0 insertions, 0 deletions