From 3e34526960d26ea9f3e2000d9e2400136d85086a Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 15 Jan 2008 21:34:54 +0100 Subject: ls-remote: add -t and -h options. These options are listed in the manpage (aliases for --tags/--heads) but they were not handled. Signed-off-by: Miklos Vajna Signed-off-by: Junio C Hamano --- builtin-ls-remote.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'builtin-ls-remote.c') diff --git a/builtin-ls-remote.c b/builtin-ls-remote.c index c2caeeabe2..6dd31d1dd6 100644 --- a/builtin-ls-remote.c +++ b/builtin-ls-remote.c @@ -54,11 +54,11 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) uploadpack = arg + 7; continue; } - if (!strcmp("--tags", arg)) { + if (!strcmp("--tags", arg) || !strcmp("-t", arg)) { flags |= REF_TAGS; continue; } - if (!strcmp("--heads", arg)) { + if (!strcmp("--heads", arg) || !strcmp("-h", arg)) { flags |= REF_HEADS; continue; } -- cgit v1.2.3