Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Williams <bmwill@google.com>2018-03-15 20:31:21 +0300
committerJunio C Hamano <gitster@pobox.com>2018-03-15 22:01:08 +0300
commite52449b672210f4b49e116ca34dcd46657287f61 (patch)
treeacf2751917ca8443909296c28edcb42997ba02f2 /connect.h
parent72d0ea0056b8656765748a8bdeb42ee26ee1c8dc (diff)
connect: request remote refs using v2
Teach the client to be able to request a remote's refs using protocol v2. This is done by having a client issue a 'ls-refs' request to a v2 server. Signed-off-by: Brandon Williams <bmwill@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'connect.h')
-rw-r--r--connect.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/connect.h b/connect.h
index cdb8979dce..8898d44952 100644
--- a/connect.h
+++ b/connect.h
@@ -16,4 +16,6 @@ extern int url_is_local_not_ssh(const char *url);
struct packet_reader;
extern enum protocol_version discover_version(struct packet_reader *reader);
+extern int server_supports_v2(const char *c, int die_on_error);
+
#endif