]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/upload-pack.c
The eighth batch
[thirdparty/git.git] / builtin / upload-pack.c
CommitLineData
a3d6b53e 1#include "builtin.h"
9bfa0f9b 2#include "exec-cmd.h"
f394e093 3#include "gettext.h"
a3d6b53e
BW
4#include "pkt-line.h"
5#include "parse-options.h"
c339932b 6#include "path.h"
a3d6b53e 7#include "protocol.h"
cbeab747 8#include "replace-object.h"
a3d6b53e 9#include "upload-pack.h"
e52449b6 10#include "serve.h"
5f642794 11#include "commit.h"
1c00f92e 12#include "environment.h"
a3d6b53e
BW
13
14static const char * const upload_pack_usage[] = {
8c9e292d
ÆAB
15 N_("git-upload-pack [--[no-]strict] [--timeout=<n>] [--stateless-rpc]\n"
16 " [--advertise-refs] <directory>"),
a3d6b53e
BW
17 NULL
18};
19
20int cmd_upload_pack(int argc, const char **argv, const char *prefix)
21{
22 const char *dir;
23 int strict = 0;
f234da80
ÆAB
24 int advertise_refs = 0;
25 int stateless_rpc = 0;
26 int timeout = 0;
a3d6b53e 27 struct option options[] = {
f234da80 28 OPT_BOOL(0, "stateless-rpc", &stateless_rpc,
a3d6b53e 29 N_("quit after a single request/response exchange")),
98e2d9d6
ÆAB
30 OPT_HIDDEN_BOOL(0, "http-backend-info-refs", &advertise_refs,
31 N_("serve up the info/refs for git-http-backend")),
32 OPT_ALIAS(0, "advertise-refs", "http-backend-info-refs"),
a3d6b53e
BW
33 OPT_BOOL(0, "strict", &strict,
34 N_("do not try <directory>/.git/ if <directory> is no Git directory")),
f234da80 35 OPT_INTEGER(0, "timeout", &timeout,
a3d6b53e
BW
36 N_("interrupt transfer after <n> seconds of inactivity")),
37 OPT_END()
38 };
39
40 packet_trace_identity("upload-pack");
d24eda4e 41 disable_replace_refs();
5f642794 42 save_commit_buffer = 0;
1c00f92e 43 xsetenv(NO_LAZY_FETCH_ENVIRONMENT, "1", 0);
a3d6b53e 44
d64db5b3 45 argc = parse_options(argc, argv, prefix, options, upload_pack_usage, 0);
a3d6b53e
BW
46
47 if (argc != 1)
48 usage_with_options(upload_pack_usage, options);
49
a3d6b53e
BW
50 setup_path();
51
52 dir = argv[0];
53
54 if (!enter_repo(dir, strict))
55 die("'%s' does not appear to be a git repository", dir);
56
57 switch (determine_protocol_version_server()) {
8f6982b4 58 case protocol_v2:
f234da80
ÆAB
59 if (advertise_refs)
60 protocol_v2_advertise_capabilities();
61 else
62 protocol_v2_serve_loop(stateless_rpc);
8f6982b4 63 break;
a3d6b53e
BW
64 case protocol_v1:
65 /*
66 * v1 is just the original protocol with a version string,
67 * so just fall through after writing the version string.
68 */
f234da80 69 if (advertise_refs || !stateless_rpc)
a3d6b53e
BW
70 packet_write_fmt(1, "version 1\n");
71
72 /* fallthrough */
73 case protocol_v0:
f234da80 74 upload_pack(advertise_refs, stateless_rpc, timeout);
a3d6b53e
BW
75 break;
76 case protocol_unknown_version:
77 BUG("unknown protocol version");
78 }
79
80 return 0;
81}