Start the 2.46 cycle
[git.git] / builtin / upload-pack.c
blob15afb97260165bc51cc85bae59b08afb37bfc6a6
1 #include "builtin.h"
2 #include "exec-cmd.h"
3 #include "gettext.h"
4 #include "pkt-line.h"
5 #include "parse-options.h"
6 #include "path.h"
7 #include "protocol.h"
8 #include "replace-object.h"
9 #include "upload-pack.h"
10 #include "serve.h"
11 #include "commit.h"
13 static const char * const upload_pack_usage[] = {
14 N_("git-upload-pack [--[no-]strict] [--timeout=<n>] [--stateless-rpc]\n"
15 " [--advertise-refs] <directory>"),
16 NULL
19 int cmd_upload_pack(int argc, const char **argv, const char *prefix)
21 const char *dir;
22 int strict = 0;
23 int advertise_refs = 0;
24 int stateless_rpc = 0;
25 int timeout = 0;
26 struct option options[] = {
27 OPT_BOOL(0, "stateless-rpc", &stateless_rpc,
28 N_("quit after a single request/response exchange")),
29 OPT_HIDDEN_BOOL(0, "http-backend-info-refs", &advertise_refs,
30 N_("serve up the info/refs for git-http-backend")),
31 OPT_ALIAS(0, "advertise-refs", "http-backend-info-refs"),
32 OPT_BOOL(0, "strict", &strict,
33 N_("do not try <directory>/.git/ if <directory> is no Git directory")),
34 OPT_INTEGER(0, "timeout", &timeout,
35 N_("interrupt transfer after <n> seconds of inactivity")),
36 OPT_END()
39 packet_trace_identity("upload-pack");
40 disable_replace_refs();
41 save_commit_buffer = 0;
43 argc = parse_options(argc, argv, prefix, options, upload_pack_usage, 0);
45 if (argc != 1)
46 usage_with_options(upload_pack_usage, options);
48 setup_path();
50 dir = argv[0];
52 if (!enter_repo(dir, strict))
53 die("'%s' does not appear to be a git repository", dir);
55 switch (determine_protocol_version_server()) {
56 case protocol_v2:
57 if (advertise_refs)
58 protocol_v2_advertise_capabilities();
59 else
60 protocol_v2_serve_loop(stateless_rpc);
61 break;
62 case protocol_v1:
64 * v1 is just the original protocol with a version string,
65 * so just fall through after writing the version string.
67 if (advertise_refs || !stateless_rpc)
68 packet_write_fmt(1, "version 1\n");
70 /* fallthrough */
71 case protocol_v0:
72 upload_pack(advertise_refs, stateless_rpc, timeout);
73 break;
74 case protocol_unknown_version:
75 BUG("unknown protocol version");
78 return 0;