X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=fetch-pack.c;h=d34f322477a9a072da3981c7ba49c87232ed8bc4;hb=ef1cc2cc216b37c33f1f5d68e770404c435fe1f3;hp=2528053fa8140377b1efcd528fc34cd88c895cc8;hpb=ad8972150887a8ed3dd4869fc9318cc2e48dd69f;p=git.git diff --git a/fetch-pack.c b/fetch-pack.c index 2528053f..d34f3224 100644 --- a/fetch-pack.c +++ b/fetch-pack.c @@ -416,11 +416,11 @@ int main(int argc, char **argv) exec = arg + 7; continue; } - if (!strcmp("-q", arg)) { + if (!strcmp("--quiet", arg) || !strcmp("-q", arg)) { quiet = 1; continue; } - if (!strcmp("-k", arg)) { + if (!strcmp("--keep", arg) || !strcmp("-k", arg)) { keep_pack = 1; continue; }