summaryrefslogtreecommitdiff
path: root/builtin/ls-remote.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2018-02-09 11:02:03 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-02-09 18:24:51 (GMT)
commitcdc71c1c5dabc2da7fd8c5c64dc4a3802720fe74 (patch)
treee3feb81fd44011559b441dc30e1e36171f056deb /builtin/ls-remote.c
parentc893985d46472ae6bedaaa4bed533e1e5d3f5c24 (diff)
downloadgit-cdc71c1c5dabc2da7fd8c5c64dc4a3802720fe74.zip
git-cdc71c1c5dabc2da7fd8c5c64dc4a3802720fe74.tar.gz
git-cdc71c1c5dabc2da7fd8c5c64dc4a3802720fe74.tar.bz2
completion: use __gitcomp_builtin in _git_ls_remote
The new completable options are --quiet and --upload-pack=. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/ls-remote.c')
-rw-r--r--builtin/ls-remote.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/builtin/ls-remote.c b/builtin/ls-remote.c
index c4be98a..540d564 100644
--- a/builtin/ls-remote.c
+++ b/builtin/ls-remote.c
@@ -60,8 +60,9 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix)
OPT_BIT(0, "refs", &flags, N_("do not show peeled tags"), REF_NORMAL),
OPT_BOOL(0, "get-url", &get_url,
N_("take url.<base>.insteadOf into account")),
- OPT_SET_INT(0, "exit-code", &status,
- N_("exit with exit code 2 if no matching refs are found"), 2),
+ OPT_SET_INT_F(0, "exit-code", &status,
+ N_("exit with exit code 2 if no matching refs are found"),
+ 2, PARSE_OPT_NOCOMPLETE),
OPT_BOOL(0, "symref", &show_symref_target,
N_("show underlying ref in addition to the object pointed by it")),
OPT_END()