X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=clone-pack.c;h=8f5209cfd5bfa5e2cc97333a33432b747f90d96d;hb=ab6625e06a647c4be555cadc63dfa8f0d4a7f48e;hp=31152c7f9ad5fa1bab3a2e881682a55ab180f0b6;hpb=dd7ba8b4949535c24e604a37709db0e3be9ccbbc;p=git.git diff --git a/clone-pack.c b/clone-pack.c index 31152c7f..8f5209cf 100644 --- a/clone-pack.c +++ b/clone-pack.c @@ -3,6 +3,7 @@ #include "pkt-line.h" #include +static int quiet; static const char clone_pack_usage[] = "git-clone-pack [host:]directory [heads]*"; static const char *exec = "git-upload-pack"; @@ -154,7 +155,8 @@ static int clone_pack(int fd[2], int nr_match, char **match) close(fd[1]); dup2(fd[0], 0); close(fd[0]); - execlp("git-unpack-objects", "git-unpack-objects", NULL); + execlp("git-unpack-objects", "git-unpack-objects", + quiet ? "-q" : NULL, NULL); die("git-unpack-objects exec failed"); } close(fd[0]); @@ -190,7 +192,10 @@ int main(int argc, char **argv) char *arg = argv[i]; if (*arg == '-') { - /* Arguments go here */ + if (!strcmp("-q", arg)) { + quiet = 1; + continue; + } usage(clone_pack_usage); } dest = arg;