7 static const char send_pack_usage
[] =
8 "git-send-pack [--all] [--exec=git-receive-pack] <remote> [<head>...]\n"
9 " --all and explicit <head> specification are mutually exclusive.";
10 static const char *exec
= "git-receive-pack";
11 static int send_all
= 0;
12 static int force_update
= 0;
14 static int is_zero_sha1(const unsigned char *sha1
)
18 for (i
= 0; i
< 20; i
++) {
25 static void exec_pack_objects(void)
27 static char *args
[] = {
32 execvp("git-pack-objects", args
);
33 die("git-pack-objects exec failed (%s)", strerror(errno
));
36 static void exec_rev_list(struct ref
*refs
)
38 static char *args
[1000];
41 args
[i
++] = "git-rev-list"; /* 0 */
42 args
[i
++] = "--objects"; /* 1 */
44 char *buf
= malloc(100);
46 die("git-rev-list environment overflow");
47 if (!is_zero_sha1(refs
->old_sha1
) &&
48 has_sha1_file(refs
->old_sha1
)) {
50 snprintf(buf
, 50, "^%s", sha1_to_hex(refs
->old_sha1
));
53 if (!is_zero_sha1(refs
->new_sha1
)) {
55 snprintf(buf
, 50, "%s", sha1_to_hex(refs
->new_sha1
));
60 execvp("git-rev-list", args
);
61 die("git-rev-list exec failed (%s)", strerror(errno
));
64 static void rev_list(int fd
, struct ref
*refs
)
67 pid_t pack_objects_pid
;
69 if (pipe(pipe_fd
) < 0)
70 die("rev-list setup: pipe failed");
71 pack_objects_pid
= fork();
72 if (!pack_objects_pid
) {
79 die("pack-objects setup failed");
81 if (pack_objects_pid
< 0)
82 die("pack-objects fork failed");
90 static int pack_objects(int fd
, struct ref
*refs
)
94 rev_list_pid
= fork();
97 die("rev-list setup failed");
100 die("rev-list fork failed");
102 * We don't wait for the rev-list pipeline in the parent:
103 * we end up waiting for the other end instead
108 static void unmark_and_free(struct commit_list
*list
, unsigned int mark
)
111 struct commit_list
*temp
= list
;
112 temp
->item
->object
.flags
&= ~mark
;
118 static int ref_newer(const unsigned char *new_sha1
,
119 const unsigned char *old_sha1
)
122 struct commit
*old
, *new;
123 struct commit_list
*list
, *used
;
126 /* Both new and old must be commit-ish and new is descendant of
127 * old. Otherwise we require --force.
129 o
= deref_tag(parse_object(old_sha1
), NULL
, 0);
130 if (!o
|| o
->type
!= commit_type
)
132 old
= (struct commit
*) o
;
134 o
= deref_tag(parse_object(new_sha1
), NULL
, 0);
135 if (!o
|| o
->type
!= commit_type
)
137 new = (struct commit
*) o
;
139 if (parse_commit(new) < 0)
143 commit_list_insert(new, &list
);
145 new = pop_most_recent_commit(&list
, 1);
146 commit_list_insert(new, &used
);
152 unmark_and_free(list
, 1);
153 unmark_and_free(used
, 1);
157 static struct ref
*local_refs
, **local_tail
;
158 static struct ref
*remote_refs
, **remote_tail
;
160 static int one_local_ref(const char *refname
, const unsigned char *sha1
)
163 int len
= strlen(refname
) + 1;
164 ref
= xcalloc(1, sizeof(*ref
) + len
);
165 memcpy(ref
->new_sha1
, sha1
, 20);
166 memcpy(ref
->name
, refname
, len
);
168 local_tail
= &ref
->next
;
172 static void get_local_heads(void)
174 local_tail
= &local_refs
;
175 for_each_ref(one_local_ref
);
178 static int send_pack(int in
, int out
, int nr_refspec
, char **refspec
)
183 /* No funny business with the matcher */
184 remote_tail
= get_remote_heads(in
, &remote_refs
, 0, NULL
, 1);
189 remote_tail
= &remote_refs
;
190 if (match_refs(local_refs
, remote_refs
, &remote_tail
,
191 nr_refspec
, refspec
, send_all
))
195 fprintf(stderr
, "No refs in common and none specified; doing nothing.\n");
200 * Finally, tell the other end!
203 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
204 char old_hex
[60], *new_hex
;
207 if (!memcmp(ref
->old_sha1
, ref
->peer_ref
->new_sha1
, 20)) {
208 fprintf(stderr
, "'%s': up-to-date\n", ref
->name
);
212 /* This part determines what can overwrite what.
215 * (0) you can always use --force or +A:B notation to
216 * selectively force individual ref pairs.
218 * (1) if the old thing does not exist, it is OK.
220 * (2) if you do not have the old thing, you are not allowed
221 * to overwrite it; you would not know what you are losing
224 * (3) if both new and old are commit-ish, and new is a
225 * descendant of old, it is OK.
229 !is_zero_sha1(ref
->old_sha1
) &&
231 if (!has_sha1_file(ref
->old_sha1
)) {
232 error("remote '%s' object %s does not "
234 ref
->name
, sha1_to_hex(ref
->old_sha1
));
238 /* We assume that local is fsck-clean. Otherwise
239 * you _could_ have an old tag which points at
240 * something you do not have, which may or may not
243 if (!ref_newer(ref
->peer_ref
->new_sha1
,
245 error("remote ref '%s' is not a strict "
246 "subset of local ref '%s'.", ref
->name
,
247 ref
->peer_ref
->name
);
251 memcpy(ref
->new_sha1
, ref
->peer_ref
->new_sha1
, 20);
252 if (is_zero_sha1(ref
->new_sha1
)) {
253 error("cannot happen anymore");
257 strcpy(old_hex
, sha1_to_hex(ref
->old_sha1
));
258 new_hex
= sha1_to_hex(ref
->new_sha1
);
259 packet_write(out
, "%s %s %s", old_hex
, new_hex
, ref
->name
);
260 fprintf(stderr
, "updating '%s'", ref
->name
);
261 if (strcmp(ref
->name
, ref
->peer_ref
->name
))
262 fprintf(stderr
, " using '%s'", ref
->peer_ref
->name
);
263 fprintf(stderr
, "\n from %s\n to %s\n", old_hex
, new_hex
);
268 pack_objects(out
, remote_refs
);
274 int main(int argc
, char **argv
)
282 setup_git_directory();
284 for (i
= 1; i
< argc
; i
++, argv
++) {
288 if (!strncmp(arg
, "--exec=", 7)) {
292 if (!strcmp(arg
, "--all")) {
296 if (!strcmp(arg
, "--force")) {
300 usage(send_pack_usage
);
311 usage(send_pack_usage
);
312 if (heads
&& send_all
)
313 usage(send_pack_usage
);
314 pid
= git_connect(fd
, dest
, exec
);
317 ret
= send_pack(fd
[0], fd
[1], nr_heads
, heads
);