6 #include "run-command.h"
9 static const char send_pack_usage
[] =
10 "git-send-pack [--all] [--dry-run] [--force] [--receive-pack=<git-receive-pack>] [--verbose] [--thin] [<host>:]<directory> [<ref>...]\n"
11 " --all and explicit <ref> specification are mutually exclusive.";
12 static const char *receivepack
= "git-receive-pack";
15 static int force_update
;
16 static int use_thin_pack
;
20 * Make a pack stream and spit it out into file descriptor fd
22 static int pack_objects(int fd
, struct ref
*refs
)
25 * The child becomes pack-objects --revs; we feed
26 * the revision parameters to it via its stdin and
27 * let its stdout go back to the other end.
29 const char *args
[] = {
37 struct child_process po
;
41 memset(&po
, 0, sizeof(po
));
46 if (start_command(&po
))
47 die("git-pack-objects failed (%s)", strerror(errno
));
50 * We feed the pack-objects we just spawned with revision
51 * parameters by writing to the pipe.
56 if (!is_null_sha1(refs
->old_sha1
) &&
57 has_sha1_file(refs
->old_sha1
)) {
58 memcpy(buf
+ 1, sha1_to_hex(refs
->old_sha1
), 40);
61 if (!write_or_whine(po
.in
, buf
, 42,
62 "send-pack: send refs"))
65 if (!is_null_sha1(refs
->new_sha1
)) {
66 memcpy(buf
, sha1_to_hex(refs
->new_sha1
), 40);
68 if (!write_or_whine(po
.in
, buf
, 41,
69 "send-pack: send refs"))
75 if (finish_command(&po
))
76 return error("pack-objects died with strange error");
80 static void unmark_and_free(struct commit_list
*list
, unsigned int mark
)
83 struct commit_list
*temp
= list
;
84 temp
->item
->object
.flags
&= ~mark
;
90 static int ref_newer(const unsigned char *new_sha1
,
91 const unsigned char *old_sha1
)
94 struct commit
*old
, *new;
95 struct commit_list
*list
, *used
;
98 /* Both new and old must be commit-ish and new is descendant of
99 * old. Otherwise we require --force.
101 o
= deref_tag(parse_object(old_sha1
), NULL
, 0);
102 if (!o
|| o
->type
!= OBJ_COMMIT
)
104 old
= (struct commit
*) o
;
106 o
= deref_tag(parse_object(new_sha1
), NULL
, 0);
107 if (!o
|| o
->type
!= OBJ_COMMIT
)
109 new = (struct commit
*) o
;
111 if (parse_commit(new) < 0)
115 commit_list_insert(new, &list
);
117 new = pop_most_recent_commit(&list
, 1);
118 commit_list_insert(new, &used
);
124 unmark_and_free(list
, 1);
125 unmark_and_free(used
, 1);
129 static struct ref
*local_refs
, **local_tail
;
130 static struct ref
*remote_refs
, **remote_tail
;
132 static int one_local_ref(const char *refname
, const unsigned char *sha1
, int flag
, void *cb_data
)
135 int len
= strlen(refname
) + 1;
136 ref
= xcalloc(1, sizeof(*ref
) + len
);
137 hashcpy(ref
->new_sha1
, sha1
);
138 memcpy(ref
->name
, refname
, len
);
140 local_tail
= &ref
->next
;
144 static void get_local_heads(void)
146 local_tail
= &local_refs
;
147 for_each_ref(one_local_ref
, NULL
);
150 static int receive_status(int in
)
154 int len
= packet_read_line(in
, line
, sizeof(line
));
155 if (len
< 10 || memcmp(line
, "unpack ", 7)) {
156 fprintf(stderr
, "did not receive status back\n");
159 if (memcmp(line
, "unpack ok\n", 10)) {
164 len
= packet_read_line(in
, line
, sizeof(line
));
168 (memcmp(line
, "ok", 2) && memcmp(line
, "ng", 2))) {
169 fprintf(stderr
, "protocol error: %s\n", line
);
173 if (!memcmp(line
, "ok", 2))
181 static void update_tracking_ref(struct remote
*remote
, struct ref
*ref
)
192 will_delete_ref
= is_null_sha1(ref
->peer_ref
->new_sha1
);
194 if (!will_delete_ref
&&
195 !hashcmp(ref
->old_sha1
, ref
->peer_ref
->new_sha1
))
198 if (!remote_find_tracking(remote
, &rs
)) {
199 fprintf(stderr
, "updating local tracking ref '%s'\n", rs
.dst
);
200 if (is_null_sha1(ref
->peer_ref
->new_sha1
)) {
201 if (delete_ref(rs
.dst
, NULL
))
202 error("Failed to delete");
204 update_ref("update by push", rs
.dst
,
205 ref
->new_sha1
, NULL
, 0, 0);
210 static int send_pack(int in
, int out
, struct remote
*remote
, int nr_refspec
, char **refspec
)
215 int ask_for_status_report
= 0;
216 int allow_deleting_refs
= 0;
217 int expect_status_report
= 0;
219 /* No funny business with the matcher */
220 remote_tail
= get_remote_heads(in
, &remote_refs
, 0, NULL
, REF_NORMAL
);
223 /* Does the other end support the reporting? */
224 if (server_supports("report-status"))
225 ask_for_status_report
= 1;
226 if (server_supports("delete-refs"))
227 allow_deleting_refs
= 1;
231 remote_tail
= &remote_refs
;
232 if (match_refs(local_refs
, remote_refs
, &remote_tail
,
233 nr_refspec
, refspec
, send_all
))
237 fprintf(stderr
, "No refs in common and none specified; doing nothing.\n"
238 "Perhaps you should specify a branch such as 'master'.\n");
243 * Finally, tell the other end!
246 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
247 char old_hex
[60], *new_hex
;
254 will_delete_ref
= is_null_sha1(ref
->peer_ref
->new_sha1
);
255 if (will_delete_ref
&& !allow_deleting_refs
) {
256 error("remote does not support deleting refs");
260 if (!will_delete_ref
&&
261 !hashcmp(ref
->old_sha1
, ref
->peer_ref
->new_sha1
)) {
263 fprintf(stderr
, "'%s': up-to-date\n", ref
->name
);
267 /* This part determines what can overwrite what.
270 * (0) you can always use --force or +A:B notation to
271 * selectively force individual ref pairs.
273 * (1) if the old thing does not exist, it is OK.
275 * (2) if you do not have the old thing, you are not allowed
276 * to overwrite it; you would not know what you are losing
279 * (3) if both new and old are commit-ish, and new is a
280 * descendant of old, it is OK.
282 * (4) regardless of all of the above, removing :B is
288 !is_null_sha1(ref
->old_sha1
) &&
290 if (!has_sha1_file(ref
->old_sha1
) ||
291 !ref_newer(ref
->peer_ref
->new_sha1
,
293 /* We do not have the remote ref, or
294 * we know that the remote ref is not
295 * an ancestor of what we are trying to
296 * push. Either way this can be losing
297 * commits at the remote end and likely
298 * we were not up to date to begin with.
300 error("remote '%s' is not an ancestor of\n"
302 " Maybe you are not up-to-date and "
303 "need to pull first?",
305 ref
->peer_ref
->name
);
310 hashcpy(ref
->new_sha1
, ref
->peer_ref
->new_sha1
);
311 if (!will_delete_ref
)
313 strcpy(old_hex
, sha1_to_hex(ref
->old_sha1
));
314 new_hex
= sha1_to_hex(ref
->new_sha1
);
317 if (ask_for_status_report
) {
318 packet_write(out
, "%s %s %s%c%s",
319 old_hex
, new_hex
, ref
->name
, 0,
321 ask_for_status_report
= 0;
322 expect_status_report
= 1;
325 packet_write(out
, "%s %s %s",
326 old_hex
, new_hex
, ref
->name
);
329 fprintf(stderr
, "deleting '%s'\n", ref
->name
);
331 fprintf(stderr
, "updating '%s'", ref
->name
);
332 if (strcmp(ref
->name
, ref
->peer_ref
->name
))
333 fprintf(stderr
, " using '%s'",
334 ref
->peer_ref
->name
);
335 fprintf(stderr
, "\n from %s\n to %s\n",
341 if (new_refs
&& !dry_run
)
342 ret
= pack_objects(out
, remote_refs
);
345 if (expect_status_report
) {
346 if (receive_status(in
))
350 if (!dry_run
&& remote
&& ret
== 0) {
351 for (ref
= remote_refs
; ref
; ref
= ref
->next
)
352 update_tracking_ref(remote
, ref
);
355 if (!new_refs
&& ret
== 0)
356 fprintf(stderr
, "Everything up-to-date\n");
360 static void verify_remote_names(int nr_heads
, char **heads
)
364 for (i
= 0; i
< nr_heads
; i
++) {
365 const char *remote
= strchr(heads
[i
], ':');
367 remote
= remote
? (remote
+ 1) : heads
[i
];
368 switch (check_ref_format(remote
)) {
370 case -2: /* ok but a single level -- that is fine for
373 case -3: /* ok but ends with a pattern-match character */
376 die("remote part of refspec is not a valid name in %s",
381 int main(int argc
, char **argv
)
387 struct child_process
*conn
;
388 char *remote_name
= NULL
;
389 struct remote
*remote
= NULL
;
391 setup_git_directory();
392 git_config(git_default_config
);
395 for (i
= 1; i
< argc
; i
++, argv
++) {
399 if (!prefixcmp(arg
, "--receive-pack=")) {
400 receivepack
= arg
+ 15;
403 if (!prefixcmp(arg
, "--exec=")) {
404 receivepack
= arg
+ 7;
407 if (!prefixcmp(arg
, "--remote=")) {
408 remote_name
= arg
+ 9;
411 if (!strcmp(arg
, "--all")) {
415 if (!strcmp(arg
, "--dry-run")) {
419 if (!strcmp(arg
, "--force")) {
423 if (!strcmp(arg
, "--verbose")) {
427 if (!strcmp(arg
, "--thin")) {
431 usage(send_pack_usage
);
442 usage(send_pack_usage
);
443 if (heads
&& send_all
)
444 usage(send_pack_usage
);
445 verify_remote_names(nr_heads
, heads
);
448 remote
= remote_get(remote_name
);
449 if (!remote_has_url(remote
, dest
)) {
450 die("Destination %s is not a uri for %s",
455 conn
= git_connect(fd
, dest
, receivepack
, verbose
? CONNECT_VERBOSE
: 0);
456 ret
= send_pack(fd
[0], fd
[1], remote
, nr_heads
, heads
);
459 ret
|= finish_connect(conn
);