3 #include "fetch-pack.h"
6 #include "sha1-array.h"
8 static const char fetch_pack_usage[] =
9 "git fetch-pack [--all] [--stdin] [--quiet|-q] [--keep|-k] [--thin] "
10 "[--include-tag] [--upload-pack=<git-upload-pack>] [--depth=<n>] "
11 "[--no-progress] [-v] [<host>:]<directory> [<refs>...]";
13 static void add_sought_entry_mem(struct ref ***sought, int *nr, int *alloc,
14 const char *name, int namelen)
16 struct ref *ref = xcalloc(1, sizeof(*ref) + namelen + 1);
17 unsigned char sha1[20];
19 if (namelen > 41 && name[40] == ' ' && !get_sha1_hex(name, sha1)) {
20 hashcpy(ref->old_sha1, sha1);
25 memcpy(ref->name, name, namelen);
26 ref->name[namelen] = '\0';
28 ALLOC_GROW(*sought, *nr, *alloc);
29 (*sought)[*nr - 1] = ref;
32 static void add_sought_entry(struct ref ***sought, int *nr, int *alloc,
35 add_sought_entry_mem(sought, nr, alloc, string, strlen(string));
38 int cmd_fetch_pack(int argc, const char **argv, const char *prefix)
41 struct ref *ref = NULL;
42 const char *dest = NULL;
43 struct ref **sought = NULL;
44 int nr_sought = 0, alloc_sought = 0;
46 char *pack_lockfile = NULL;
47 char **pack_lockfile_ptr = NULL;
48 struct child_process *conn;
49 struct fetch_pack_args args;
50 struct sha1_array shallow = SHA1_ARRAY_INIT;
52 packet_trace_identity("fetch-pack");
54 memset(&args, 0, sizeof(args));
55 args.uploadpack = "git-upload-pack";
57 for (i = 1; i < argc && *argv[i] == '-'; i++) {
58 const char *arg = argv[i];
60 if (!prefixcmp(arg, "--upload-pack=")) {
61 args.uploadpack = arg + 14;
64 if (!prefixcmp(arg, "--exec=")) {
65 args.uploadpack = arg + 7;
68 if (!strcmp("--quiet", arg) || !strcmp("-q", arg)) {
72 if (!strcmp("--keep", arg) || !strcmp("-k", arg)) {
73 args.lock_pack = args.keep_pack;
77 if (!strcmp("--thin", arg)) {
78 args.use_thin_pack = 1;
81 if (!strcmp("--include-tag", arg)) {
85 if (!strcmp("--all", arg)) {
89 if (!strcmp("--stdin", arg)) {
93 if (!strcmp("-v", arg)) {
97 if (!prefixcmp(arg, "--depth=")) {
98 args.depth = strtol(arg + 8, NULL, 0);
101 if (!strcmp("--no-progress", arg)) {
102 args.no_progress = 1;
105 if (!strcmp("--stateless-rpc", arg)) {
106 args.stateless_rpc = 1;
109 if (!strcmp("--lock-pack", arg)) {
111 pack_lockfile_ptr = &pack_lockfile;
114 if (!strcmp("--check-self-contained-and-connected", arg)) {
115 args.check_self_contained_and_connected = 1;
118 if (!strcmp("--cloning", arg)) {
122 if (!strcmp("--update-shallow", arg)) {
123 args.update_shallow = 1;
126 usage(fetch_pack_usage);
132 usage(fetch_pack_usage);
135 * Copy refs from cmdline to growable list, then append any
136 * refs from the standard input:
138 for (; i < argc; i++)
139 add_sought_entry(&sought, &nr_sought, &alloc_sought, argv[i]);
140 if (args.stdin_refs) {
141 if (args.stateless_rpc) {
142 /* in stateless RPC mode we use pkt-line to read
143 * from stdin, until we get a flush packet
146 char *line = packet_read_line(0, NULL);
149 add_sought_entry(&sought, &nr_sought, &alloc_sought, line);
153 /* read from stdin one ref per line, until EOF */
154 struct strbuf line = STRBUF_INIT;
155 while (strbuf_getline(&line, stdin, '\n') != EOF)
156 add_sought_entry(&sought, &nr_sought, &alloc_sought, line.buf);
157 strbuf_release(&line);
161 if (args.stateless_rpc) {
166 conn = git_connect(fd, dest, args.uploadpack,
167 args.verbose ? CONNECT_VERBOSE : 0);
170 get_remote_heads(fd[0], NULL, 0, &ref, 0, NULL, &shallow);
172 ref = fetch_pack(&args, fd, conn, ref, dest, sought, nr_sought,
173 &shallow, pack_lockfile_ptr);
175 printf("lock %s\n", pack_lockfile);
178 if (args.check_self_contained_and_connected &&
179 args.self_contained_and_connected) {
180 printf("connectivity-ok\n");
185 if (finish_connect(conn))
191 * If the heads to pull were given, we should have consumed
192 * all of them by matching the remote. Otherwise, 'git fetch
193 * remote no-such-ref' would silently succeed without issuing
196 for (i = 0; i < nr_sought; i++) {
197 if (!sought[i] || sought[i]->matched)
199 error("no such remote ref %s", sought[i]->name);
205 sha1_to_hex(ref->old_sha1), ref->name);