]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-send-pack.c
Avoid apache complaining about lack of server's FQDN
[thirdparty/git.git] / builtin-send-pack.c
CommitLineData
61221472 1#include "cache.h"
2a9c3fe8 2#include "commit.h"
37fde874 3#include "tag.h"
584c6cc9 4#include "refs.h"
f3a3214e 5#include "pkt-line.h"
38b1c662 6#include "run-command.h"
6b62816c 7#include "remote.h"
96249c04 8#include "send-pack.h"
61221472 9
2a245013 10static const char send_pack_usage[] =
28b9d6e5 11"git-send-pack [--all | --mirror] [--dry-run] [--force] [--receive-pack=<git-receive-pack>] [--verbose] [--thin] [<host>:]<directory> [<ref>...]\n"
18bd8821 12" --all and explicit <ref> specification are mutually exclusive.";
96249c04
DB
13
14static struct send_pack_args args = {
15 /* .receivepack = */ "git-receive-pack",
16};
61221472 17
c727fe2a 18/*
0ae5f98c 19 * Make a pack stream and spit it out into file descriptor fd
c727fe2a 20 */
0ae5f98c 21static int pack_objects(int fd, struct ref *refs)
c727fe2a 22{
38b1c662
SP
23 /*
24 * The child becomes pack-objects --revs; we feed
25 * the revision parameters to it via its stdin and
26 * let its stdout go back to the other end.
27 */
96249c04 28 const char *argv[] = {
38b1c662
SP
29 "pack-objects",
30 "--all-progress",
31 "--revs",
32 "--stdout",
33 NULL,
34 NULL,
35 };
36 struct child_process po;
c727fe2a 37
96249c04
DB
38 if (args.use_thin_pack)
39 argv[4] = "--thin";
38b1c662 40 memset(&po, 0, sizeof(po));
96249c04 41 po.argv = argv;
38b1c662
SP
42 po.in = -1;
43 po.out = fd;
44 po.git_cmd = 1;
45 if (start_command(&po))
46 die("git-pack-objects failed (%s)", strerror(errno));
c727fe2a 47
0ae5f98c
JH
48 /*
49 * We feed the pack-objects we just spawned with revision
50 * parameters by writing to the pipe.
c727fe2a 51 */
c727fe2a
AW
52 while (refs) {
53 char buf[42];
54
55 if (!is_null_sha1(refs->old_sha1) &&
56 has_sha1_file(refs->old_sha1)) {
57 memcpy(buf + 1, sha1_to_hex(refs->old_sha1), 40);
58 buf[0] = '^';
59 buf[41] = '\n';
38b1c662 60 if (!write_or_whine(po.in, buf, 42,
825cee7b
AW
61 "send-pack: send refs"))
62 break;
c727fe2a
AW
63 }
64 if (!is_null_sha1(refs->new_sha1)) {
65 memcpy(buf, sha1_to_hex(refs->new_sha1), 40);
66 buf[40] = '\n';
38b1c662 67 if (!write_or_whine(po.in, buf, 41,
825cee7b
AW
68 "send-pack: send refs"))
69 break;
c727fe2a
AW
70 }
71 refs = refs->next;
72 }
c727fe2a 73
e72ae288 74 close(po.in);
38b1c662
SP
75 if (finish_command(&po))
76 return error("pack-objects died with strange error");
77 return 0;
94fdb7aa 78}
e4b5c7ff 79
51b0fca0
JH
80static void unmark_and_free(struct commit_list *list, unsigned int mark)
81{
82 while (list) {
83 struct commit_list *temp = list;
84 temp->item->object.flags &= ~mark;
85 list = temp->next;
86 free(temp);
87 }
88}
89
37fde874
JH
90static int ref_newer(const unsigned char *new_sha1,
91 const unsigned char *old_sha1)
584c6cc9 92{
37fde874
JH
93 struct object *o;
94 struct commit *old, *new;
51b0fca0
JH
95 struct commit_list *list, *used;
96 int found = 0;
2a9c3fe8 97
37fde874
JH
98 /* Both new and old must be commit-ish and new is descendant of
99 * old. Otherwise we require --force.
100 */
9534f40b 101 o = deref_tag(parse_object(old_sha1), NULL, 0);
1974632c 102 if (!o || o->type != OBJ_COMMIT)
584c6cc9 103 return 0;
37fde874
JH
104 old = (struct commit *) o;
105
9534f40b 106 o = deref_tag(parse_object(new_sha1), NULL, 0);
1974632c 107 if (!o || o->type != OBJ_COMMIT)
2a9c3fe8 108 return 0;
37fde874
JH
109 new = (struct commit *) o;
110
2a9c3fe8
LT
111 if (parse_commit(new) < 0)
112 return 0;
51b0fca0
JH
113
114 used = list = NULL;
2a9c3fe8 115 commit_list_insert(new, &list);
bdf25142
LT
116 while (list) {
117 new = pop_most_recent_commit(&list, 1);
51b0fca0
JH
118 commit_list_insert(new, &used);
119 if (new == old) {
120 found = 1;
121 break;
122 }
2a9c3fe8 123 }
51b0fca0
JH
124 unmark_and_free(list, 1);
125 unmark_and_free(used, 1);
126 return found;
584c6cc9
LT
127}
128
f88395ac
JH
129static struct ref *local_refs, **local_tail;
130static struct ref *remote_refs, **remote_tail;
584c6cc9 131
8da19775 132static int one_local_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
584c6cc9
LT
133{
134 struct ref *ref;
f88395ac
JH
135 int len = strlen(refname) + 1;
136 ref = xcalloc(1, sizeof(*ref) + len);
e702496e 137 hashcpy(ref->new_sha1, sha1);
584c6cc9 138 memcpy(ref->name, refname, len);
f88395ac
JH
139 *local_tail = ref;
140 local_tail = &ref->next;
584c6cc9
LT
141 return 0;
142}
143
f88395ac
JH
144static void get_local_heads(void)
145{
146 local_tail = &local_refs;
cb5d709f 147 for_each_ref(one_local_ref, NULL);
f88395ac
JH
148}
149
ca74c458
JK
150static int receive_status(int in, struct ref *refs)
151{
152 struct ref *hint;
cfee10a7
JH
153 char line[1000];
154 int ret = 0;
155 int len = packet_read_line(in, line, sizeof(line));
2a0fe89a
JK
156 if (len < 10 || memcmp(line, "unpack ", 7))
157 return error("did not receive remote status");
cfee10a7 158 if (memcmp(line, "unpack ok\n", 10)) {
2a0fe89a
JK
159 char *p = line + strlen(line) - 1;
160 if (*p == '\n')
161 *p = '\0';
162 error("unpack failed: %s", line + 7);
cfee10a7
JH
163 ret = -1;
164 }
ca74c458 165 hint = NULL;
cfee10a7 166 while (1) {
2a0fe89a
JK
167 char *refname;
168 char *msg;
cfee10a7
JH
169 len = packet_read_line(in, line, sizeof(line));
170 if (!len)
171 break;
172 if (len < 3 ||
2a0fe89a 173 (memcmp(line, "ok ", 3) && memcmp(line, "ng ", 3))) {
cfee10a7
JH
174 fprintf(stderr, "protocol error: %s\n", line);
175 ret = -1;
176 break;
177 }
2a0fe89a
JK
178
179 line[strlen(line)-1] = '\0';
180 refname = line + 3;
181 msg = strchr(refname, ' ');
182 if (msg)
183 *msg++ = '\0';
184
185 /* first try searching at our hint, falling back to all refs */
ca74c458 186 if (hint)
2a0fe89a 187 hint = find_ref_by_name(hint, refname);
ca74c458 188 if (!hint)
2a0fe89a
JK
189 hint = find_ref_by_name(refs, refname);
190 if (!hint) {
191 warning("remote reported status on unknown ref: %s",
192 refname);
193 continue;
194 }
195 if (hint->status != REF_STATUS_EXPECTING_REPORT) {
196 warning("remote reported status on unexpected ref: %s",
197 refname);
198 continue;
199 }
200
201 if (line[0] == 'o' && line[1] == 'k')
202 hint->status = REF_STATUS_OK;
203 else {
204 hint->status = REF_STATUS_REMOTE_REJECT;
205 ret = -1;
206 }
207 if (msg)
208 hint->remote_status = xstrdup(msg);
209 /* start our next search from the next ref */
210 hint = hint->next;
cfee10a7
JH
211 }
212 return ret;
213}
214
334f4831
JK
215static void update_tracking_ref(struct remote *remote, struct ref *ref)
216{
217 struct refspec rs;
334f4831 218
1f0e2a1a 219 if (ref->status != REF_STATUS_OK)
334f4831
JK
220 return;
221
1f0e2a1a
JK
222 rs.src = ref->name;
223 rs.dst = NULL;
334f4831
JK
224
225 if (!remote_find_tracking(remote, &rs)) {
b50fa2bd
JK
226 if (args.verbose)
227 fprintf(stderr, "updating local tracking ref '%s'\n", rs.dst);
1f0e2a1a 228 if (ref->deletion) {
334f4831
JK
229 if (delete_ref(rs.dst, NULL))
230 error("Failed to delete");
231 } else
232 update_ref("update by push", rs.dst,
233 ref->new_sha1, NULL, 0, 0);
234 free(rs.dst);
235 }
236}
237
8736a848 238static const char *prettify_ref(const struct ref *ref)
f7673490 239{
8736a848 240 const char *name = ref->name;
f7673490
JK
241 return name + (
242 !prefixcmp(name, "refs/heads/") ? 11 :
243 !prefixcmp(name, "refs/tags/") ? 10 :
244 !prefixcmp(name, "refs/remotes/") ? 13 :
245 0);
246}
247
248#define SUMMARY_WIDTH (2 * DEFAULT_ABBREV + 3)
249
8736a848
JK
250static void print_ref_status(char flag, const char *summary, struct ref *to, struct ref *from, const char *msg)
251{
252 fprintf(stderr, " %c %-*s ", flag, SUMMARY_WIDTH, summary);
253 if (from)
254 fprintf(stderr, "%s -> %s", prettify_ref(from), prettify_ref(to));
255 else
256 fputs(prettify_ref(to), stderr);
257 if (msg) {
258 fputs(" (", stderr);
259 fputs(msg, stderr);
260 fputc(')', stderr);
261 }
262 fputc('\n', stderr);
263}
264
265static const char *status_abbrev(unsigned char sha1[20])
266{
2efb3b06 267 return find_unique_abbrev(sha1, DEFAULT_ABBREV);
8736a848
JK
268}
269
270static void print_ok_ref_status(struct ref *ref)
271{
272 if (ref->deletion)
273 print_ref_status('-', "[deleted]", ref, NULL, NULL);
274 else if (is_null_sha1(ref->old_sha1))
275 print_ref_status('*',
276 (!prefixcmp(ref->name, "refs/tags/") ? "[new tag]" :
277 "[new branch]"),
278 ref, ref->peer_ref, NULL);
279 else {
280 char quickref[84];
281 char type;
282 const char *msg;
283
284 strcpy(quickref, status_abbrev(ref->old_sha1));
285 if (ref->nonfastforward) {
286 strcat(quickref, "...");
287 type = '+';
288 msg = "forced update";
289 } else {
290 strcat(quickref, "..");
291 type = ' ';
292 msg = NULL;
293 }
294 strcat(quickref, status_abbrev(ref->new_sha1));
295
296 print_ref_status(type, quickref, ref, ref->peer_ref, msg);
297 }
298}
299
07f50715
JK
300static int print_one_push_status(struct ref *ref, const char *dest, int count)
301{
302 if (!count)
303 fprintf(stderr, "To %s\n", dest);
304
305 switch(ref->status) {
306 case REF_STATUS_NONE:
307 print_ref_status('X', "[no match]", ref, NULL, NULL);
308 break;
309 case REF_STATUS_REJECT_NODELETE:
310 print_ref_status('!', "[rejected]", ref, NULL,
311 "remote does not support deleting refs");
312 break;
313 case REF_STATUS_UPTODATE:
314 print_ref_status('=', "[up to date]", ref,
315 ref->peer_ref, NULL);
316 break;
317 case REF_STATUS_REJECT_NONFASTFORWARD:
318 print_ref_status('!', "[rejected]", ref, ref->peer_ref,
319 "non-fast forward");
320 break;
321 case REF_STATUS_REMOTE_REJECT:
322 print_ref_status('!', "[remote rejected]", ref,
323 ref->deletion ? NULL : ref->peer_ref,
324 ref->remote_status);
325 break;
326 case REF_STATUS_EXPECTING_REPORT:
327 print_ref_status('!', "[remote failure]", ref,
328 ref->deletion ? NULL : ref->peer_ref,
329 "remote failed to report status");
330 break;
331 case REF_STATUS_OK:
332 print_ok_ref_status(ref);
333 break;
334 }
335
336 return 1;
337}
338
8736a848
JK
339static void print_push_status(const char *dest, struct ref *refs)
340{
341 struct ref *ref;
07f50715 342 int n = 0;
8736a848 343
07f50715
JK
344 if (args.verbose) {
345 for (ref = refs; ref; ref = ref->next)
346 if (ref->status == REF_STATUS_UPTODATE)
347 n += print_one_push_status(ref, dest, n);
348 }
8736a848 349
07f50715
JK
350 for (ref = refs; ref; ref = ref->next)
351 if (ref->status == REF_STATUS_OK)
352 n += print_one_push_status(ref, dest, n);
8736a848 353
07f50715
JK
354 for (ref = refs; ref; ref = ref->next) {
355 if (ref->status != REF_STATUS_NONE &&
356 ref->status != REF_STATUS_UPTODATE &&
357 ref->status != REF_STATUS_OK)
358 n += print_one_push_status(ref, dest, n);
8736a848
JK
359 }
360}
361
73fa0b44
JK
362static int refs_pushed(struct ref *ref)
363{
364 for (; ref; ref = ref->next) {
365 switch(ref->status) {
366 case REF_STATUS_NONE:
367 case REF_STATUS_UPTODATE:
368 break;
369 default:
370 return 1;
371 }
372 }
373 return 0;
374}
375
f7673490 376static int do_send_pack(int in, int out, struct remote *remote, const char *dest, int nr_refspec, const char **refspec)
61221472 377{
7f8e9828 378 struct ref *ref;
584c6cc9 379 int new_refs;
cfee10a7 380 int ask_for_status_report = 0;
d4f694ba 381 int allow_deleting_refs = 0;
cfee10a7 382 int expect_status_report = 0;
28b9d6e5 383 int flags = MATCH_REFS_NONE;
ca74c458 384 int ret;
28b9d6e5
AW
385
386 if (args.send_all)
387 flags |= MATCH_REFS_ALL;
388 if (args.send_mirror)
389 flags |= MATCH_REFS_MIRROR;
7f8e9828 390
f88395ac 391 /* No funny business with the matcher */
2718ff09 392 remote_tail = get_remote_heads(in, &remote_refs, 0, NULL, REF_NORMAL);
f88395ac 393 get_local_heads();
584c6cc9 394
cfee10a7
JH
395 /* Does the other end support the reporting? */
396 if (server_supports("report-status"))
397 ask_for_status_report = 1;
d4f694ba
JH
398 if (server_supports("delete-refs"))
399 allow_deleting_refs = 1;
cfee10a7 400
f88395ac
JH
401 /* match them up */
402 if (!remote_tail)
403 remote_tail = &remote_refs;
404 if (match_refs(local_refs, remote_refs, &remote_tail,
c20181e3
JS
405 nr_refspec, refspec, flags)) {
406 close(out);
f88395ac 407 return -1;
c20181e3 408 }
4c353e89
DB
409
410 if (!remote_refs) {
7e23b06d
AC
411 fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
412 "Perhaps you should specify a branch such as 'master'.\n");
c20181e3 413 close(out);
4c353e89
DB
414 return 0;
415 }
416
584c6cc9 417 /*
f88395ac 418 * Finally, tell the other end!
584c6cc9 419 */
f88395ac
JH
420 new_refs = 0;
421 for (ref = remote_refs; ref; ref = ref->next) {
28b9d6e5 422 const unsigned char *new_sha1;
d4f694ba 423
28b9d6e5
AW
424 if (!ref->peer_ref) {
425 if (!args.send_mirror)
426 continue;
427 new_sha1 = null_sha1;
428 }
429 else
430 new_sha1 = ref->peer_ref->new_sha1;
d4f694ba 431
28b9d6e5 432
8736a848
JK
433 ref->deletion = is_null_sha1(new_sha1);
434 if (ref->deletion && !allow_deleting_refs) {
435 ref->status = REF_STATUS_REJECT_NODELETE;
d4f694ba
JH
436 continue;
437 }
8736a848 438 if (!ref->deletion &&
28b9d6e5 439 !hashcmp(ref->old_sha1, new_sha1)) {
8736a848 440 ref->status = REF_STATUS_UPTODATE;
37fde874
JH
441 continue;
442 }
443
444 /* This part determines what can overwrite what.
445 * The rules are:
446 *
ff27adf3
JH
447 * (0) you can always use --force or +A:B notation to
448 * selectively force individual ref pairs.
37fde874
JH
449 *
450 * (1) if the old thing does not exist, it is OK.
451 *
452 * (2) if you do not have the old thing, you are not allowed
453 * to overwrite it; you would not know what you are losing
454 * otherwise.
455 *
456 * (3) if both new and old are commit-ish, and new is a
457 * descendant of old, it is OK.
d4f694ba
JH
458 *
459 * (4) regardless of all of the above, removing :B is
460 * always allowed.
37fde874
JH
461 */
462
8736a848
JK
463 ref->nonfastforward =
464 !ref->deletion &&
4b4ee90e 465 !is_null_sha1(ref->old_sha1) &&
8736a848
JK
466 (!has_sha1_file(ref->old_sha1)
467 || !ref_newer(new_sha1, ref->old_sha1));
468
469 if (ref->nonfastforward && !ref->force && !args.force_update) {
470 ref->status = REF_STATUS_REJECT_NONFASTFORWARD;
471 continue;
e4b5c7ff 472 }
8736a848 473
28b9d6e5 474 hashcpy(ref->new_sha1, new_sha1);
8736a848 475 if (!ref->deletion)
d4f694ba 476 new_refs++;
cfee10a7 477
96249c04 478 if (!args.dry_run) {
8736a848
JK
479 char *old_hex = sha1_to_hex(ref->old_sha1);
480 char *new_hex = sha1_to_hex(ref->new_sha1);
481
a63103ae
BE
482 if (ask_for_status_report) {
483 packet_write(out, "%s %s %s%c%s",
484 old_hex, new_hex, ref->name, 0,
485 "report-status");
486 ask_for_status_report = 0;
487 expect_status_report = 1;
488 }
489 else
490 packet_write(out, "%s %s %s",
491 old_hex, new_hex, ref->name);
cfee10a7 492 }
2a0fe89a
JK
493 ref->status = expect_status_report ?
494 REF_STATUS_EXPECTING_REPORT :
495 REF_STATUS_OK;
61221472 496 }
f88395ac 497
f3a3214e 498 packet_flush(out);
8736a848 499 if (new_refs && !args.dry_run) {
c20181e3 500 if (pack_objects(out, remote_refs) < 0)
8736a848 501 return -1;
8736a848 502 }
c20181e3
JS
503 else
504 close(out);
cfee10a7 505
2a0fe89a 506 if (expect_status_report)
ca74c458 507 ret = receive_status(in, remote_refs);
ca74c458
JK
508 else
509 ret = 0;
510
511 print_push_status(dest, remote_refs);
cfee10a7 512
8736a848 513 if (!args.dry_run && remote) {
334f4831 514 for (ref = remote_refs; ref; ref = ref->next)
1f0e2a1a 515 update_tracking_ref(remote, ref);
334f4831
JK
516 }
517
73fa0b44 518 if (!refs_pushed(remote_refs))
cfee10a7 519 fprintf(stderr, "Everything up-to-date\n");
ca74c458
JK
520 if (ret < 0)
521 return ret;
8736a848
JK
522 for (ref = remote_refs; ref; ref = ref->next) {
523 switch (ref->status) {
524 case REF_STATUS_NONE:
525 case REF_STATUS_UPTODATE:
526 case REF_STATUS_OK:
527 break;
528 default:
529 return -1;
530 }
531 }
532 return 0;
61221472
LT
533}
534
4577370e 535static void verify_remote_names(int nr_heads, const char **heads)
37adac76
JH
536{
537 int i;
538
539 for (i = 0; i < nr_heads; i++) {
a83619d6 540 const char *local = heads[i];
46220ca1 541 const char *remote = strrchr(heads[i], ':');
37adac76 542
a83619d6
PB
543 if (*local == '+')
544 local++;
545
546 /* A matching refspec is okay. */
547 if (remote == local && remote[1] == '\0')
548 continue;
549
550 remote = remote ? (remote + 1) : local;
37adac76
JH
551 switch (check_ref_format(remote)) {
552 case 0: /* ok */
257f3020
JH
553 case CHECK_REF_FORMAT_ONELEVEL:
554 /* ok but a single level -- that is fine for
555 * a match pattern.
556 */
557 case CHECK_REF_FORMAT_WILDCARD:
558 /* ok but ends with a pattern-match character */
37adac76
JH
559 continue;
560 }
561 die("remote part of refspec is not a valid name in %s",
562 heads[i]);
563 }
564}
f88395ac 565
96249c04 566int cmd_send_pack(int argc, const char **argv, const char *prefix)
61221472
LT
567{
568 int i, nr_heads = 0;
4577370e 569 const char **heads = NULL;
96249c04 570 const char *remote_name = NULL;
b516968f 571 struct remote *remote = NULL;
96249c04 572 const char *dest = NULL;
84a9b58c 573
61221472 574 argv++;
d089391c 575 for (i = 1; i < argc; i++, argv++) {
96249c04 576 const char *arg = *argv;
61221472
LT
577
578 if (*arg == '-') {
cc44c765 579 if (!prefixcmp(arg, "--receive-pack=")) {
96249c04 580 args.receivepack = arg + 15;
d23842fd
UKK
581 continue;
582 }
cc44c765 583 if (!prefixcmp(arg, "--exec=")) {
96249c04 584 args.receivepack = arg + 7;
61221472
LT
585 continue;
586 }
b516968f
DB
587 if (!prefixcmp(arg, "--remote=")) {
588 remote_name = arg + 9;
589 continue;
590 }
d089391c 591 if (!strcmp(arg, "--all")) {
96249c04 592 args.send_all = 1;
d089391c
LT
593 continue;
594 }
a63103ae 595 if (!strcmp(arg, "--dry-run")) {
96249c04 596 args.dry_run = 1;
a63103ae
BE
597 continue;
598 }
28b9d6e5
AW
599 if (!strcmp(arg, "--mirror")) {
600 args.send_mirror = 1;
601 continue;
602 }
2a9c3fe8 603 if (!strcmp(arg, "--force")) {
96249c04 604 args.force_update = 1;
2a9c3fe8
LT
605 continue;
606 }
41f93a2c 607 if (!strcmp(arg, "--verbose")) {
96249c04 608 args.verbose = 1;
41f93a2c
LT
609 continue;
610 }
2245be3e 611 if (!strcmp(arg, "--thin")) {
96249c04 612 args.use_thin_pack = 1;
2245be3e
JH
613 continue;
614 }
61221472
LT
615 usage(send_pack_usage);
616 }
d089391c
LT
617 if (!dest) {
618 dest = arg;
619 continue;
620 }
4577370e 621 heads = (const char **) argv;
d089391c 622 nr_heads = argc - i;
61221472
LT
623 break;
624 }
625 if (!dest)
626 usage(send_pack_usage);
28b9d6e5
AW
627 /*
628 * --all and --mirror are incompatible; neither makes sense
629 * with any refspecs.
630 */
631 if ((heads && (args.send_all || args.send_mirror)) ||
632 (args.send_all && args.send_mirror))
0bc3cdfc 633 usage(send_pack_usage);
37adac76 634
b516968f
DB
635 if (remote_name) {
636 remote = remote_get(remote_name);
28b91f8a 637 if (!remote_has_url(remote, dest)) {
b516968f
DB
638 die("Destination %s is not a uri for %s",
639 dest, remote_name);
640 }
641 }
642
96249c04
DB
643 return send_pack(&args, dest, remote, nr_heads, heads);
644}
645
646int send_pack(struct send_pack_args *my_args,
647 const char *dest, struct remote *remote,
648 int nr_heads, const char **heads)
649{
650 int fd[2], ret;
651 struct child_process *conn;
652
653 memcpy(&args, my_args, sizeof(args));
654
655 verify_remote_names(nr_heads, heads);
656
657 conn = git_connect(fd, dest, args.receivepack, args.verbose ? CONNECT_VERBOSE : 0);
f7673490 658 ret = do_send_pack(fd[0], fd[1], remote, dest, nr_heads, heads);
7f8e9828 659 close(fd[0]);
c20181e3 660 /* do_send_pack always closes fd[1] */
98158e9c 661 ret |= finish_connect(conn);
8a5dbef8 662 return !!ret;
61221472 663}