5 #include "parse-options.h"
7 #include "upload-pack.h"
9 static const char * const upload_pack_usage[] = {
10 N_("git upload-pack [<options>] <dir>"),
14 int cmd_upload_pack(int argc, const char **argv, const char *prefix)
18 struct upload_pack_options opts = { 0 };
19 struct option options[] = {
20 OPT_BOOL(0, "stateless-rpc", &opts.stateless_rpc,
21 N_("quit after a single request/response exchange")),
22 OPT_BOOL(0, "advertise-refs", &opts.advertise_refs,
23 N_("exit immediately after initial ref advertisement")),
24 OPT_BOOL(0, "strict", &strict,
25 N_("do not try <directory>/.git/ if <directory> is no Git directory")),
26 OPT_INTEGER(0, "timeout", &opts.timeout,
27 N_("interrupt transfer after <n> seconds of inactivity")),
31 packet_trace_identity("upload-pack");
32 check_replace_refs = 0;
34 argc = parse_options(argc, argv, NULL, options, upload_pack_usage, 0);
37 usage_with_options(upload_pack_usage, options);
46 if (!enter_repo(dir, strict))
47 die("'%s' does not appear to be a git repository", dir);
49 switch (determine_protocol_version_server()) {
52 * fetch support for protocol v2 has not been implemented yet,
53 * so ignore the request to use v2 and fallback to using v0.
59 * v1 is just the original protocol with a version string,
60 * so just fall through after writing the version string.
62 if (opts.advertise_refs || !opts.stateless_rpc)
63 packet_write_fmt(1, "version 1\n");
69 case protocol_unknown_version:
70 BUG("unknown protocol version");