10 #include "transport.h"
11 #include "run-command.h"
13 static const char fetch_usage
[] = "git-fetch [-a | --append] [--upload-pack <upload-pack>] [-f | --force] [--no-tags] [-t | --tags] [-k | --keep] [-u | --update-head-ok] [--depth <depth>] [-v | --verbose] [<repository> <refspec>...]";
15 static int append
, force
, tags
, no_tags
, update_head_ok
, verbose
, quiet
;
16 static const char *depth
;
17 static char *default_rla
= NULL
;
18 static struct transport
*transport
;
20 static void unlock_pack(void)
23 transport_unlock_pack(transport
);
26 static void unlock_pack_on_signal(int signo
)
29 signal(SIGINT
, SIG_DFL
);
33 static void add_merge_config(struct ref
**head
,
34 const struct ref
*remote_refs
,
35 struct branch
*branch
,
40 for (i
= 0; i
< branch
->merge_nr
; i
++) {
41 struct ref
*rm
, **old_tail
= *tail
;
42 struct refspec refspec
;
44 for (rm
= *head
; rm
; rm
= rm
->next
) {
45 if (branch_merge_matches(branch
, i
, rm
->name
)) {
54 * Not fetched to a tracking branch? We need to fetch
55 * it anyway to allow this branch's "branch.$name.merge"
56 * to be honored by git-pull, but we do not have to
57 * fail if branch.$name.merge is misconfigured to point
58 * at a nonexisting branch. If we were indeed called by
59 * git-pull, it will notice the misconfiguration because
60 * there is no entry in the resulting FETCH_HEAD marked
63 refspec
.src
= branch
->merge
[i
]->src
;
67 get_fetch_map(remote_refs
, &refspec
, tail
, 1);
68 for (rm
= *old_tail
; rm
; rm
= rm
->next
)
73 static struct ref
*get_ref_map(struct transport
*transport
,
74 struct refspec
*refs
, int ref_count
, int tags
,
79 struct ref
*ref_map
= NULL
;
80 struct ref
**tail
= &ref_map
;
82 const struct ref
*remote_refs
= transport_get_remote_refs(transport
);
84 if (ref_count
|| tags
) {
85 for (i
= 0; i
< ref_count
; i
++) {
86 get_fetch_map(remote_refs
, &refs
[i
], &tail
, 0);
87 if (refs
[i
].dst
&& refs
[i
].dst
[0])
90 /* Merge everything on the command line, but not --tags */
91 for (rm
= ref_map
; rm
; rm
= rm
->next
)
94 struct refspec refspec
;
95 refspec
.src
= "refs/tags/";
96 refspec
.dst
= "refs/tags/";
99 get_fetch_map(remote_refs
, &refspec
, &tail
, 0);
102 /* Use the defaults */
103 struct remote
*remote
= transport
->remote
;
104 struct branch
*branch
= branch_get(NULL
);
105 int has_merge
= branch_has_merge_config(branch
);
106 if (remote
&& (remote
->fetch_refspec_nr
|| has_merge
)) {
107 for (i
= 0; i
< remote
->fetch_refspec_nr
; i
++) {
108 get_fetch_map(remote_refs
, &remote
->fetch
[i
], &tail
, 0);
109 if (remote
->fetch
[i
].dst
&&
110 remote
->fetch
[i
].dst
[0])
112 if (!i
&& !has_merge
&& ref_map
&&
113 !remote
->fetch
[0].pattern
)
117 * if the remote we're fetching from is the same
118 * as given in branch.<name>.remote, we add the
119 * ref given in branch.<name>.merge, too.
122 !strcmp(branch
->remote_name
, remote
->name
))
123 add_merge_config(&ref_map
, remote_refs
, branch
, &tail
);
125 ref_map
= get_remote_ref(remote_refs
, "HEAD");
127 die("Couldn't find remote ref HEAD");
131 ref_remove_duplicates(ref_map
);
136 static int s_update_ref(const char *action
,
141 char *rla
= getenv("GIT_REFLOG_ACTION");
142 static struct ref_lock
*lock
;
146 snprintf(msg
, sizeof(msg
), "%s: %s", rla
, action
);
147 lock
= lock_any_ref_for_update(ref
->name
,
148 check_old
? ref
->old_sha1
: NULL
, 0);
151 if (write_ref_sha1(lock
, ref
->new_sha1
, msg
) < 0)
156 #define SUMMARY_WIDTH (2 * DEFAULT_ABBREV + 3)
157 #define REFCOL_WIDTH 10
159 static int update_local_ref(struct ref
*ref
,
164 struct commit
*current
= NULL
, *updated
;
165 enum object_type type
;
166 struct branch
*current_branch
= branch_get(NULL
);
167 const char *pretty_ref
= ref
->name
+ (
168 !prefixcmp(ref
->name
, "refs/heads/") ? 11 :
169 !prefixcmp(ref
->name
, "refs/tags/") ? 10 :
170 !prefixcmp(ref
->name
, "refs/remotes/") ? 13 :
174 type
= sha1_object_info(ref
->new_sha1
, NULL
);
176 die("object %s not found", sha1_to_hex(ref
->new_sha1
));
181 sprintf(display
, "* branch %s -> FETCH_HEAD", remote
);
185 if (!hashcmp(ref
->old_sha1
, ref
->new_sha1
)) {
187 sprintf(display
, "= %-*s %-*s -> %s", SUMMARY_WIDTH
,
188 "[up to date]", REFCOL_WIDTH
, remote
,
193 if (current_branch
&&
194 !strcmp(ref
->name
, current_branch
->name
) &&
195 !(update_head_ok
|| is_bare_repository()) &&
196 !is_null_sha1(ref
->old_sha1
)) {
198 * If this is the head, and it's not okay to update
199 * the head, and the old value of the head isn't empty...
201 sprintf(display
, "! %-*s %-*s -> %s (can't fetch in current branch)",
202 SUMMARY_WIDTH
, "[rejected]", REFCOL_WIDTH
, remote
,
207 if (!is_null_sha1(ref
->old_sha1
) &&
208 !prefixcmp(ref
->name
, "refs/tags/")) {
209 sprintf(display
, "- %-*s %-*s -> %s",
210 SUMMARY_WIDTH
, "[tag update]", REFCOL_WIDTH
, remote
,
212 return s_update_ref("updating tag", ref
, 0);
215 current
= lookup_commit_reference_gently(ref
->old_sha1
, 1);
216 updated
= lookup_commit_reference_gently(ref
->new_sha1
, 1);
217 if (!current
|| !updated
) {
220 if (!strncmp(ref
->name
, "refs/tags/", 10)) {
225 msg
= "storing head";
226 what
= "[new branch]";
229 sprintf(display
, "* %-*s %-*s -> %s", SUMMARY_WIDTH
, what
,
230 REFCOL_WIDTH
, remote
, pretty_ref
);
231 return s_update_ref(msg
, ref
, 0);
234 if (in_merge_bases(current
, &updated
, 1)) {
236 strcpy(quickref
, find_unique_abbrev(current
->object
.sha1
, DEFAULT_ABBREV
));
237 strcat(quickref
, "..");
238 strcat(quickref
, find_unique_abbrev(ref
->new_sha1
, DEFAULT_ABBREV
));
239 sprintf(display
, " %-*s %-*s -> %s", SUMMARY_WIDTH
, quickref
,
240 REFCOL_WIDTH
, remote
, pretty_ref
);
241 return s_update_ref("fast forward", ref
, 1);
242 } else if (force
|| ref
->force
) {
244 strcpy(quickref
, find_unique_abbrev(current
->object
.sha1
, DEFAULT_ABBREV
));
245 strcat(quickref
, "...");
246 strcat(quickref
, find_unique_abbrev(ref
->new_sha1
, DEFAULT_ABBREV
));
247 sprintf(display
, "+ %-*s %-*s -> %s (forced update)",
248 SUMMARY_WIDTH
, quickref
, REFCOL_WIDTH
, remote
, pretty_ref
);
249 return s_update_ref("forced-update", ref
, 1);
251 sprintf(display
, "! %-*s %-*s -> %s (non fast forward)",
252 SUMMARY_WIDTH
, "[rejected]", REFCOL_WIDTH
, remote
,
258 static int store_updated_refs(const char *url
, struct ref
*ref_map
)
261 struct commit
*commit
;
262 int url_len
, i
, note_len
, shown_url
= 0;
264 const char *what
, *kind
;
266 char *filename
= git_path("FETCH_HEAD");
268 fp
= fopen(filename
, "a");
270 return error("cannot open %s: %s\n", filename
, strerror(errno
));
271 for (rm
= ref_map
; rm
; rm
= rm
->next
) {
272 struct ref
*ref
= NULL
;
275 ref
= xcalloc(1, sizeof(*ref
) + strlen(rm
->peer_ref
->name
) + 1);
276 strcpy(ref
->name
, rm
->peer_ref
->name
);
277 hashcpy(ref
->old_sha1
, rm
->peer_ref
->old_sha1
);
278 hashcpy(ref
->new_sha1
, rm
->old_sha1
);
279 ref
->force
= rm
->peer_ref
->force
;
282 commit
= lookup_commit_reference_gently(rm
->old_sha1
, 1);
286 if (!strcmp(rm
->name
, "HEAD")) {
290 else if (!prefixcmp(rm
->name
, "refs/heads/")) {
292 what
= rm
->name
+ 11;
294 else if (!prefixcmp(rm
->name
, "refs/tags/")) {
296 what
= rm
->name
+ 10;
298 else if (!prefixcmp(rm
->name
, "refs/remotes/")) {
299 kind
= "remote branch";
300 what
= rm
->name
+ 13;
307 url_len
= strlen(url
);
308 for (i
= url_len
- 1; url
[i
] == '/' && 0 <= i
; i
--)
311 if (4 < i
&& !strncmp(".git", url
+ i
- 3, 4))
317 note_len
+= sprintf(note
+ note_len
, "%s ",
319 note_len
+= sprintf(note
+ note_len
, "'%s' of ", what
);
321 note_len
+= sprintf(note
+ note_len
, "%.*s", url_len
, url
);
322 fprintf(fp
, "%s\t%s\t%s\n",
323 sha1_to_hex(commit
? commit
->object
.sha1
:
325 rm
->merge
? "" : "not-for-merge",
329 update_local_ref(ref
, what
, verbose
, note
);
332 fprintf(stderr
, "From %.*s\n",
336 fprintf(stderr
, " %s\n", note
);
345 * We would want to bypass the object transfer altogether if
346 * everything we are going to fetch already exists and connected
349 * The refs we are going to fetch are in to_fetch (nr_heads in
352 * $ git-rev-list --objects to_fetch[0] to_fetch[1] ... --not --all
354 * does not error out, that means everything reachable from the
355 * refs we are going to fetch exists and is connected to some of
358 static int quickfetch(struct ref
*ref_map
)
360 struct child_process revlist
;
366 * If we are deepening a shallow clone we already have these
367 * objects reachable. Running rev-list here will return with
368 * a good (0) exit status and we'll bypass the fetch that we
369 * really need to perform. Claiming failure now will ensure
370 * we perform the network exchange to deepen our history.
375 for (i
= 0, ref
= ref_map
; ref
; ref
= ref
->next
)
380 argv
= xmalloc(sizeof(*argv
) * (i
+ 6));
382 argv
[i
++] = xstrdup("rev-list");
383 argv
[i
++] = xstrdup("--quiet");
384 argv
[i
++] = xstrdup("--objects");
385 for (ref
= ref_map
; ref
; ref
= ref
->next
)
386 argv
[i
++] = xstrdup(sha1_to_hex(ref
->old_sha1
));
387 argv
[i
++] = xstrdup("--not");
388 argv
[i
++] = xstrdup("--all");
391 memset(&revlist
, 0, sizeof(revlist
));
392 revlist
.argv
= (const char**)argv
;
394 revlist
.no_stdin
= 1;
395 revlist
.no_stdout
= 1;
396 revlist
.no_stderr
= 1;
397 err
= run_command(&revlist
);
399 for (i
= 0; argv
[i
]; i
++)
405 static int fetch_refs(struct transport
*transport
, struct ref
*ref_map
)
407 int ret
= quickfetch(ref_map
);
409 ret
= transport_fetch_refs(transport
, ref_map
);
411 ret
|= store_updated_refs(transport
->url
, ref_map
);
412 transport_unlock_pack(transport
);
416 static int add_existing(const char *refname
, const unsigned char *sha1
,
417 int flag
, void *cbdata
)
419 struct path_list
*list
= (struct path_list
*)cbdata
;
420 path_list_insert(refname
, list
);
424 static struct ref
*find_non_local_tags(struct transport
*transport
,
425 struct ref
*fetch_map
)
427 static struct path_list existing_refs
= { NULL
, 0, 0, 0 };
428 struct path_list new_refs
= { NULL
, 0, 0, 1 };
431 const unsigned char *ref_sha1
;
432 const struct ref
*tag_ref
;
433 struct ref
*rm
= NULL
;
434 struct ref
*ref_map
= NULL
;
435 struct ref
**tail
= &ref_map
;
436 const struct ref
*ref
;
438 for_each_ref(add_existing
, &existing_refs
);
439 for (ref
= transport_get_remote_refs(transport
); ref
; ref
= ref
->next
) {
440 if (prefixcmp(ref
->name
, "refs/tags"))
443 ref_name
= xstrdup(ref
->name
);
444 ref_name_len
= strlen(ref_name
);
445 ref_sha1
= ref
->old_sha1
;
447 if (!strcmp(ref_name
+ ref_name_len
- 3, "^{}")) {
448 ref_name
[ref_name_len
- 3] = 0;
449 tag_ref
= transport_get_remote_refs(transport
);
451 if (!strcmp(tag_ref
->name
, ref_name
)) {
452 ref_sha1
= tag_ref
->old_sha1
;
455 tag_ref
= tag_ref
->next
;
459 if (!path_list_has_path(&existing_refs
, ref_name
) &&
460 !path_list_has_path(&new_refs
, ref_name
) &&
461 has_sha1_file(ref
->old_sha1
)) {
462 path_list_insert(ref_name
, &new_refs
);
464 rm
= alloc_ref(strlen(ref_name
) + 1);
465 strcpy(rm
->name
, ref_name
);
466 rm
->peer_ref
= alloc_ref(strlen(ref_name
) + 1);
467 strcpy(rm
->peer_ref
->name
, ref_name
);
468 hashcpy(rm
->old_sha1
, ref_sha1
);
479 static int do_fetch(struct transport
*transport
,
480 struct refspec
*refs
, int ref_count
)
482 struct ref
*ref_map
, *fetch_map
;
484 int autotags
= (transport
->remote
->fetch_tags
== 1);
485 if (transport
->remote
->fetch_tags
== 2 && !no_tags
)
487 if (transport
->remote
->fetch_tags
== -1)
490 if (!transport
->get_refs_list
|| !transport
->fetch
)
491 die("Don't know how to fetch from %s", transport
->url
);
493 /* if not appending, truncate FETCH_HEAD */
495 char *filename
= git_path("FETCH_HEAD");
496 FILE *fp
= fopen(filename
, "w");
498 return error("cannot open %s: %s\n", filename
, strerror(errno
));
502 ref_map
= get_ref_map(transport
, refs
, ref_count
, tags
, &autotags
);
504 for (rm
= ref_map
; rm
; rm
= rm
->next
) {
506 read_ref(rm
->peer_ref
->name
, rm
->peer_ref
->old_sha1
);
509 if (fetch_refs(transport
, ref_map
)) {
516 /* if neither --no-tags nor --tags was specified, do automated tag
518 if (!(tags
|| no_tags
) && autotags
) {
519 ref_map
= find_non_local_tags(transport
, fetch_map
);
521 transport_set_option(transport
, TRANS_OPT_DEPTH
, "0");
522 fetch_refs(transport
, ref_map
);
527 free_refs(fetch_map
);
532 static void set_option(const char *name
, const char *value
)
534 int r
= transport_set_option(transport
, name
, value
);
536 die("Option \"%s\" value \"%s\" is not valid for %s\n",
537 name
, value
, transport
->url
);
539 warning("Option \"%s\" is ignored for %s\n",
540 name
, transport
->url
);
543 int cmd_fetch(int argc
, const char **argv
, const char *prefix
)
545 struct remote
*remote
;
546 int i
, j
, rla_offset
;
547 static const char **refs
= NULL
;
550 const char *upload_pack
= NULL
;
553 for (i
= 1; i
< argc
; i
++) {
554 const char *arg
= argv
[i
];
555 cmd_len
+= strlen(arg
);
559 if (!strcmp(arg
, "--append") || !strcmp(arg
, "-a")) {
563 if (!prefixcmp(arg
, "--upload-pack=")) {
564 upload_pack
= arg
+ 14;
567 if (!strcmp(arg
, "--upload-pack")) {
571 upload_pack
= argv
[i
];
574 if (!strcmp(arg
, "--force") || !strcmp(arg
, "-f")) {
578 if (!strcmp(arg
, "--no-tags")) {
582 if (!strcmp(arg
, "--tags") || !strcmp(arg
, "-t")) {
586 if (!strcmp(arg
, "--keep") || !strcmp(arg
, "-k")) {
590 if (!strcmp(arg
, "--update-head-ok") || !strcmp(arg
, "-u")) {
594 if (!prefixcmp(arg
, "--depth=")) {
598 if (!strcmp(arg
, "--depth")) {
605 if (!strcmp(arg
, "--quiet") || !strcmp(arg
, "-q")) {
609 if (!strcmp(arg
, "--verbose") || !strcmp(arg
, "-v")) {
616 for (j
= i
; j
< argc
; j
++)
617 cmd_len
+= strlen(argv
[j
]);
619 default_rla
= xmalloc(cmd_len
+ 5 + argc
+ 1);
620 sprintf(default_rla
, "fetch");
621 rla_offset
= strlen(default_rla
);
622 for (j
= 1; j
< argc
; j
++) {
623 sprintf(default_rla
+ rla_offset
, " %s", argv
[j
]);
624 rla_offset
+= strlen(argv
[j
]) + 1;
628 remote
= remote_get(NULL
);
630 remote
= remote_get(argv
[i
++]);
632 transport
= transport_get(remote
, remote
->url
[0]);
634 transport
->verbose
= 1;
636 transport
->verbose
= -1;
638 set_option(TRANS_OPT_UPLOADPACK
, upload_pack
);
640 set_option(TRANS_OPT_KEEP
, "yes");
642 set_option(TRANS_OPT_DEPTH
, depth
);
645 die("Where do you want to fetch from today?");
649 refs
= xcalloc(argc
- i
+ 1, sizeof(const char *));
651 if (!strcmp(argv
[i
], "tag")) {
654 ref
= xmalloc(strlen(argv
[i
]) * 2 + 22);
655 strcpy(ref
, "refs/tags/");
656 strcat(ref
, argv
[i
]);
657 strcat(ref
, ":refs/tags/");
658 strcat(ref
, argv
[i
]);
668 signal(SIGINT
, unlock_pack_on_signal
);
670 return do_fetch(transport
, parse_ref_spec(ref_nr
, refs
), ref_nr
);