5 #include "parse-options.h"
7 #include "upload-pack.h"
10 static const char * const upload_pack_usage
[] = {
11 N_("git-upload-pack [--[no-]strict] [--timeout=<n>] [--stateless-rpc]\n"
12 " [--advertise-refs] <directory>"),
16 int cmd_upload_pack(int argc
, const char **argv
, const char *prefix
)
20 int advertise_refs
= 0;
21 int stateless_rpc
= 0;
23 struct option options
[] = {
24 OPT_BOOL(0, "stateless-rpc", &stateless_rpc
,
25 N_("quit after a single request/response exchange")),
26 OPT_HIDDEN_BOOL(0, "http-backend-info-refs", &advertise_refs
,
27 N_("serve up the info/refs for git-http-backend")),
28 OPT_ALIAS(0, "advertise-refs", "http-backend-info-refs"),
29 OPT_BOOL(0, "strict", &strict
,
30 N_("do not try <directory>/.git/ if <directory> is no Git directory")),
31 OPT_INTEGER(0, "timeout", &timeout
,
32 N_("interrupt transfer after <n> seconds of inactivity")),
36 packet_trace_identity("upload-pack");
37 read_replace_refs
= 0;
39 argc
= parse_options(argc
, argv
, prefix
, options
, upload_pack_usage
, 0);
42 usage_with_options(upload_pack_usage
, options
);
48 if (!enter_repo(dir
, strict
))
49 die("'%s' does not appear to be a git repository", dir
);
51 switch (determine_protocol_version_server()) {
54 protocol_v2_advertise_capabilities();
56 protocol_v2_serve_loop(stateless_rpc
);
60 * v1 is just the original protocol with a version string,
61 * so just fall through after writing the version string.
63 if (advertise_refs
|| !stateless_rpc
)
64 packet_write_fmt(1, "version 1\n");
68 upload_pack(advertise_refs
, stateless_rpc
, timeout
);
70 case protocol_unknown_version
:
71 BUG("unknown protocol version");