diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-09-09 14:30:01 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-09-09 14:30:01 -0700 |
commit | 711b2769740637e228c8200927e96b31f2065d32 (patch) | |
tree | 423a57f9f9edc28bbca1c9d607cae0fa72782884 /builtin | |
parent | Merge branch 'jc/diff-filter-negation' (diff) | |
parent | smart http: use the same connectivity check on cloning (diff) | |
download | tgif-711b2769740637e228c8200927e96b31f2065d32.tar.xz |
Merge branch 'nd/clone-connectivity-shortcut'
* nd/clone-connectivity-shortcut:
smart http: use the same connectivity check on cloning
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/fetch-pack.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/builtin/fetch-pack.c b/builtin/fetch-pack.c index aba4465552..3e19d7149e 100644 --- a/builtin/fetch-pack.c +++ b/builtin/fetch-pack.c @@ -100,6 +100,10 @@ int cmd_fetch_pack(int argc, const char **argv, const char *prefix) pack_lockfile_ptr = &pack_lockfile; continue; } + if (!strcmp("--check-self-contained-and-connected", arg)) { + args.check_self_contained_and_connected = 1; + continue; + } usage(fetch_pack_usage); } @@ -152,6 +156,11 @@ int cmd_fetch_pack(int argc, const char **argv, const char *prefix) printf("lock %s\n", pack_lockfile); fflush(stdout); } + if (args.check_self_contained_and_connected && + args.self_contained_and_connected) { + printf("connectivity-ok\n"); + fflush(stdout); + } close(fd[0]); close(fd[1]); if (finish_connect(conn)) |