2 #include "parse-options.h"
5 #include "string-list.h"
7 #include "run-command.h"
10 static const char * const builtin_remote_usage
[] = {
11 "git remote [-v | --verbose]",
12 "git remote add [-t <branch>] [-m <master>] [-f] [--mirror] <name> <url>",
13 "git remote rename <old> <new>",
14 "git remote rm <name>",
15 "git remote set-head <name> [-a | -d | <branch>]",
16 "git remote show [-n] <name>",
17 "git remote prune [-n | --dry-run] <name>",
18 "git remote [-v | --verbose] update [-p | --prune] [group]",
22 #define GET_REF_STATES (1<<0)
23 #define GET_HEAD_NAMES (1<<1)
24 #define GET_PUSH_REF_STATES (1<<2)
28 static int show_all(void);
29 static int prune_remote(const char *remote
, int dry_run
);
31 static inline int postfixcmp(const char *string
, const char *postfix
)
33 int len1
= strlen(string
), len2
= strlen(postfix
);
36 return strcmp(string
+ len1
- len2
, postfix
);
39 static int opt_parse_track(const struct option
*opt
, const char *arg
, int not)
41 struct string_list
*list
= opt
->value
;
43 string_list_clear(list
, 0);
45 string_list_append(arg
, list
);
49 static int fetch_remote(const char *name
)
51 const char *argv
[] = { "fetch", name
, NULL
, NULL
};
56 printf("Updating %s\n", name
);
57 if (run_command_v_opt(argv
, RUN_GIT_CMD
))
58 return error("Could not fetch %s", name
);
62 static int add(int argc
, const char **argv
)
64 int fetch
= 0, mirror
= 0;
65 struct string_list track
= { NULL
, 0, 0 };
66 const char *master
= NULL
;
67 struct remote
*remote
;
68 struct strbuf buf
= STRBUF_INIT
, buf2
= STRBUF_INIT
;
69 const char *name
, *url
;
72 struct option options
[] = {
73 OPT_GROUP("add specific options"),
74 OPT_BOOLEAN('f', "fetch", &fetch
, "fetch the remote branches"),
75 OPT_CALLBACK('t', "track", &track
, "branch",
76 "branch(es) to track", opt_parse_track
),
77 OPT_STRING('m', "master", &master
, "branch", "master branch"),
78 OPT_BOOLEAN(0, "mirror", &mirror
, "no separate remotes"),
82 argc
= parse_options(argc
, argv
, NULL
, options
, builtin_remote_usage
,
86 usage_with_options(builtin_remote_usage
, options
);
91 remote
= remote_get(name
);
92 if (remote
&& (remote
->url_nr
> 1 || strcmp(name
, remote
->url
[0]) ||
93 remote
->fetch_refspec_nr
))
94 die("remote %s already exists.", name
);
96 strbuf_addf(&buf2
, "refs/heads/test:refs/remotes/%s/test", name
);
97 if (!valid_fetch_refspec(buf2
.buf
))
98 die("'%s' is not a valid remote name", name
);
100 strbuf_addf(&buf
, "remote.%s.url", name
);
101 if (git_config_set(buf
.buf
, url
))
105 strbuf_addf(&buf
, "remote.%s.fetch", name
);
108 string_list_append("*", &track
);
109 for (i
= 0; i
< track
.nr
; i
++) {
110 struct string_list_item
*item
= track
.items
+ i
;
113 strbuf_addch(&buf2
, '+');
115 strbuf_addf(&buf2
, "refs/%s:refs/%s",
116 item
->string
, item
->string
);
118 strbuf_addf(&buf2
, "refs/heads/%s:refs/remotes/%s/%s",
119 item
->string
, name
, item
->string
);
120 if (git_config_set_multivar(buf
.buf
, buf2
.buf
, "^$", 0))
126 strbuf_addf(&buf
, "remote.%s.mirror", name
);
127 if (git_config_set(buf
.buf
, "true"))
131 if (fetch
&& fetch_remote(name
))
136 strbuf_addf(&buf
, "refs/remotes/%s/HEAD", name
);
139 strbuf_addf(&buf2
, "refs/remotes/%s/%s", name
, master
);
141 if (create_symref(buf
.buf
, buf2
.buf
, "remote add"))
142 return error("Could not setup master '%s'", master
);
145 strbuf_release(&buf
);
146 strbuf_release(&buf2
);
147 string_list_clear(&track
, 0);
154 struct string_list merge
;
158 static struct string_list branch_list
;
160 static const char *abbrev_ref(const char *name
, const char *prefix
)
162 const char *abbrev
= skip_prefix(name
, prefix
);
167 #define abbrev_branch(name) abbrev_ref((name), "refs/heads/")
169 static int config_read_branches(const char *key
, const char *value
, void *cb
)
171 if (!prefixcmp(key
, "branch.")) {
172 const char *orig_key
= key
;
174 struct string_list_item
*item
;
175 struct branch_info
*info
;
176 enum { REMOTE
, MERGE
, REBASE
} type
;
179 if (!postfixcmp(key
, ".remote")) {
180 name
= xstrndup(key
, strlen(key
) - 7);
182 } else if (!postfixcmp(key
, ".merge")) {
183 name
= xstrndup(key
, strlen(key
) - 6);
185 } else if (!postfixcmp(key
, ".rebase")) {
186 name
= xstrndup(key
, strlen(key
) - 7);
191 item
= string_list_insert(name
, &branch_list
);
194 item
->util
= xcalloc(sizeof(struct branch_info
), 1);
196 if (type
== REMOTE
) {
197 if (info
->remote_name
)
198 warning("more than one %s", orig_key
);
199 info
->remote_name
= xstrdup(value
);
200 } else if (type
== MERGE
) {
201 char *space
= strchr(value
, ' ');
202 value
= abbrev_branch(value
);
205 merge
= xstrndup(value
, space
- value
);
206 string_list_append(merge
, &info
->merge
);
207 value
= abbrev_branch(space
+ 1);
208 space
= strchr(value
, ' ');
210 string_list_append(xstrdup(value
), &info
->merge
);
212 info
->rebase
= git_config_bool(orig_key
, value
);
217 static void read_branches(void)
221 git_config(config_read_branches
, NULL
);
225 struct remote
*remote
;
226 struct string_list
new, stale
, tracked
, heads
, push
;
230 static int handle_one_branch(const char *refname
,
231 const unsigned char *sha1
, int flags
, void *cb_data
)
233 struct ref_states
*states
= cb_data
;
234 struct refspec refspec
;
236 memset(&refspec
, 0, sizeof(refspec
));
237 refspec
.dst
= (char *)refname
;
238 if (!remote_find_tracking(states
->remote
, &refspec
)) {
239 struct string_list_item
*item
;
240 const char *name
= abbrev_branch(refspec
.src
);
241 /* symbolic refs pointing nowhere were handled already */
242 if ((flags
& REF_ISSYMREF
) ||
243 string_list_has_string(&states
->tracked
, name
) ||
244 string_list_has_string(&states
->new, name
))
246 item
= string_list_append(name
, &states
->stale
);
247 item
->util
= xstrdup(refname
);
252 static int get_ref_states(const struct ref
*remote_refs
, struct ref_states
*states
)
254 struct ref
*fetch_map
= NULL
, **tail
= &fetch_map
;
258 for (i
= 0; i
< states
->remote
->fetch_refspec_nr
; i
++)
259 if (get_fetch_map(remote_refs
, states
->remote
->fetch
+ i
, &tail
, 1))
260 die("Could not get fetch map for refspec %s",
261 states
->remote
->fetch_refspec
[i
]);
263 states
->new.strdup_strings
= states
->tracked
.strdup_strings
= 1;
264 for (ref
= fetch_map
; ref
; ref
= ref
->next
) {
265 unsigned char sha1
[20];
266 if (!ref
->peer_ref
|| read_ref(ref
->peer_ref
->name
, sha1
))
267 string_list_append(abbrev_branch(ref
->name
), &states
->new);
269 string_list_append(abbrev_branch(ref
->name
), &states
->tracked
);
271 free_refs(fetch_map
);
273 sort_string_list(&states
->new);
274 sort_string_list(&states
->tracked
);
275 for_each_ref(handle_one_branch
, states
);
276 sort_string_list(&states
->stale
);
285 PUSH_STATUS_CREATE
= 0,
287 PUSH_STATUS_UPTODATE
,
288 PUSH_STATUS_FASTFORWARD
,
289 PUSH_STATUS_OUTOFDATE
,
290 PUSH_STATUS_NOTQUERIED
,
294 static int get_push_ref_states(const struct ref
*remote_refs
,
295 struct ref_states
*states
)
297 struct remote
*remote
= states
->remote
;
298 struct ref
*ref
, *local_refs
, *push_map
, **push_tail
;
302 local_refs
= get_local_heads();
303 push_map
= copy_ref_list(remote_refs
);
305 push_tail
= &push_map
;
307 push_tail
= &((*push_tail
)->next
);
308 match_refs(local_refs
, push_map
, &push_tail
, remote
->push_refspec_nr
,
309 remote
->push_refspec
, MATCH_REFS_NONE
);
311 states
->push
.strdup_strings
= 1;
312 for (ref
= push_map
; ref
; ref
= ref
->next
) {
313 struct string_list_item
*item
;
314 struct push_info
*info
;
318 hashcpy(ref
->new_sha1
, ref
->peer_ref
->new_sha1
);
320 item
= string_list_append(abbrev_branch(ref
->peer_ref
->name
),
322 item
->util
= xcalloc(sizeof(struct push_info
), 1);
324 info
->forced
= ref
->force
;
325 info
->dest
= xstrdup(abbrev_branch(ref
->name
));
327 if (is_null_sha1(ref
->new_sha1
)) {
328 info
->status
= PUSH_STATUS_DELETE
;
329 } else if (!hashcmp(ref
->old_sha1
, ref
->new_sha1
))
330 info
->status
= PUSH_STATUS_UPTODATE
;
331 else if (is_null_sha1(ref
->old_sha1
))
332 info
->status
= PUSH_STATUS_CREATE
;
333 else if (has_sha1_file(ref
->old_sha1
) &&
334 ref_newer(ref
->new_sha1
, ref
->old_sha1
))
335 info
->status
= PUSH_STATUS_FASTFORWARD
;
337 info
->status
= PUSH_STATUS_OUTOFDATE
;
339 free_refs(local_refs
);
344 static int get_push_ref_states_noquery(struct ref_states
*states
)
347 struct remote
*remote
= states
->remote
;
348 struct string_list_item
*item
;
349 struct push_info
*info
;
354 states
->push
.strdup_strings
= 1;
355 if (!remote
->push_refspec_nr
) {
356 item
= string_list_append("(matching)", &states
->push
);
357 info
= item
->util
= xcalloc(sizeof(struct push_info
), 1);
358 info
->status
= PUSH_STATUS_NOTQUERIED
;
359 info
->dest
= xstrdup(item
->string
);
361 for (i
= 0; i
< remote
->push_refspec_nr
; i
++) {
362 struct refspec
*spec
= remote
->push
+ i
;
364 item
= string_list_append("(matching)", &states
->push
);
365 else if (strlen(spec
->src
))
366 item
= string_list_append(spec
->src
, &states
->push
);
368 item
= string_list_append("(delete)", &states
->push
);
370 info
= item
->util
= xcalloc(sizeof(struct push_info
), 1);
371 info
->forced
= spec
->force
;
372 info
->status
= PUSH_STATUS_NOTQUERIED
;
373 info
->dest
= xstrdup(spec
->dst
? spec
->dst
: item
->string
);
378 static int get_head_names(const struct ref
*remote_refs
, struct ref_states
*states
)
380 struct ref
*ref
, *matches
;
381 struct ref
*fetch_map
= NULL
, **fetch_map_tail
= &fetch_map
;
382 struct refspec refspec
;
386 refspec
.src
= refspec
.dst
= "refs/heads/*";
387 states
->heads
.strdup_strings
= 1;
388 get_fetch_map(remote_refs
, &refspec
, &fetch_map_tail
, 0);
389 matches
= guess_remote_head(find_ref_by_name(remote_refs
, "HEAD"),
391 for(ref
= matches
; ref
; ref
= ref
->next
)
392 string_list_append(abbrev_branch(ref
->name
), &states
->heads
);
394 free_refs(fetch_map
);
400 struct known_remote
{
401 struct known_remote
*next
;
402 struct remote
*remote
;
405 struct known_remotes
{
406 struct remote
*to_delete
;
407 struct known_remote
*list
;
410 static int add_known_remote(struct remote
*remote
, void *cb_data
)
412 struct known_remotes
*all
= cb_data
;
413 struct known_remote
*r
;
415 if (!strcmp(all
->to_delete
->name
, remote
->name
))
418 r
= xmalloc(sizeof(*r
));
425 struct branches_for_remote
{
426 struct remote
*remote
;
427 struct string_list
*branches
, *skipped
;
428 struct known_remotes
*keep
;
431 static int add_branch_for_removal(const char *refname
,
432 const unsigned char *sha1
, int flags
, void *cb_data
)
434 struct branches_for_remote
*branches
= cb_data
;
435 struct refspec refspec
;
436 struct string_list_item
*item
;
437 struct known_remote
*kr
;
439 memset(&refspec
, 0, sizeof(refspec
));
440 refspec
.dst
= (char *)refname
;
441 if (remote_find_tracking(branches
->remote
, &refspec
))
444 /* don't delete a branch if another remote also uses it */
445 for (kr
= branches
->keep
->list
; kr
; kr
= kr
->next
) {
446 memset(&refspec
, 0, sizeof(refspec
));
447 refspec
.dst
= (char *)refname
;
448 if (!remote_find_tracking(kr
->remote
, &refspec
))
452 /* don't delete non-remote refs */
453 if (prefixcmp(refname
, "refs/remotes")) {
454 /* advise user how to delete local branches */
455 if (!prefixcmp(refname
, "refs/heads/"))
456 string_list_append(abbrev_branch(refname
),
458 /* silently skip over other non-remote refs */
462 /* make sure that symrefs are deleted */
463 if (flags
& REF_ISSYMREF
)
464 return unlink(git_path("%s", refname
));
466 item
= string_list_append(refname
, branches
->branches
);
467 item
->util
= xmalloc(20);
468 hashcpy(item
->util
, sha1
);
476 struct string_list
*remote_branches
;
479 static int read_remote_branches(const char *refname
,
480 const unsigned char *sha1
, int flags
, void *cb_data
)
482 struct rename_info
*rename
= cb_data
;
483 struct strbuf buf
= STRBUF_INIT
;
484 struct string_list_item
*item
;
486 unsigned char orig_sha1
[20];
489 strbuf_addf(&buf
, "refs/remotes/%s", rename
->old
);
490 if(!prefixcmp(refname
, buf
.buf
)) {
491 item
= string_list_append(xstrdup(refname
), rename
->remote_branches
);
492 symref
= resolve_ref(refname
, orig_sha1
, 1, &flag
);
493 if (flag
& REF_ISSYMREF
)
494 item
->util
= xstrdup(symref
);
502 static int migrate_file(struct remote
*remote
)
504 struct strbuf buf
= STRBUF_INIT
;
508 strbuf_addf(&buf
, "remote.%s.url", remote
->name
);
509 for (i
= 0; i
< remote
->url_nr
; i
++)
510 if (git_config_set_multivar(buf
.buf
, remote
->url
[i
], "^$", 0))
511 return error("Could not append '%s' to '%s'",
512 remote
->url
[i
], buf
.buf
);
514 strbuf_addf(&buf
, "remote.%s.push", remote
->name
);
515 for (i
= 0; i
< remote
->push_refspec_nr
; i
++)
516 if (git_config_set_multivar(buf
.buf
, remote
->push_refspec
[i
], "^$", 0))
517 return error("Could not append '%s' to '%s'",
518 remote
->push_refspec
[i
], buf
.buf
);
520 strbuf_addf(&buf
, "remote.%s.fetch", remote
->name
);
521 for (i
= 0; i
< remote
->fetch_refspec_nr
; i
++)
522 if (git_config_set_multivar(buf
.buf
, remote
->fetch_refspec
[i
], "^$", 0))
523 return error("Could not append '%s' to '%s'",
524 remote
->fetch_refspec
[i
], buf
.buf
);
525 if (remote
->origin
== REMOTE_REMOTES
)
526 path
= git_path("remotes/%s", remote
->name
);
527 else if (remote
->origin
== REMOTE_BRANCHES
)
528 path
= git_path("branches/%s", remote
->name
);
530 unlink_or_warn(path
);
534 static int mv(int argc
, const char **argv
)
536 struct option options
[] = {
539 struct remote
*oldremote
, *newremote
;
540 struct strbuf buf
= STRBUF_INIT
, buf2
= STRBUF_INIT
, buf3
= STRBUF_INIT
;
541 struct string_list remote_branches
= { NULL
, 0, 0, 0 };
542 struct rename_info rename
;
546 usage_with_options(builtin_remote_usage
, options
);
548 rename
.old
= argv
[1];
549 rename
.new = argv
[2];
550 rename
.remote_branches
= &remote_branches
;
552 oldremote
= remote_get(rename
.old
);
554 die("No such remote: %s", rename
.old
);
556 if (!strcmp(rename
.old
, rename
.new) && oldremote
->origin
!= REMOTE_CONFIG
)
557 return migrate_file(oldremote
);
559 newremote
= remote_get(rename
.new);
560 if (newremote
&& (newremote
->url_nr
> 1 || newremote
->fetch_refspec_nr
))
561 die("remote %s already exists.", rename
.new);
563 strbuf_addf(&buf
, "refs/heads/test:refs/remotes/%s/test", rename
.new);
564 if (!valid_fetch_refspec(buf
.buf
))
565 die("'%s' is not a valid remote name", rename
.new);
568 strbuf_addf(&buf
, "remote.%s", rename
.old
);
569 strbuf_addf(&buf2
, "remote.%s", rename
.new);
570 if (git_config_rename_section(buf
.buf
, buf2
.buf
) < 1)
571 return error("Could not rename config section '%s' to '%s'",
575 strbuf_addf(&buf
, "remote.%s.fetch", rename
.new);
576 if (git_config_set_multivar(buf
.buf
, NULL
, NULL
, 1))
577 return error("Could not remove config section '%s'", buf
.buf
);
578 for (i
= 0; i
< oldremote
->fetch_refspec_nr
; i
++) {
582 strbuf_addstr(&buf2
, oldremote
->fetch_refspec
[i
]);
583 ptr
= strstr(buf2
.buf
, rename
.old
);
585 strbuf_splice(&buf2
, ptr
-buf2
.buf
, strlen(rename
.old
),
586 rename
.new, strlen(rename
.new));
587 if (git_config_set_multivar(buf
.buf
, buf2
.buf
, "^$", 0))
588 return error("Could not append '%s'", buf
.buf
);
592 for (i
= 0; i
< branch_list
.nr
; i
++) {
593 struct string_list_item
*item
= branch_list
.items
+ i
;
594 struct branch_info
*info
= item
->util
;
595 if (info
->remote_name
&& !strcmp(info
->remote_name
, rename
.old
)) {
597 strbuf_addf(&buf
, "branch.%s.remote", item
->string
);
598 if (git_config_set(buf
.buf
, rename
.new)) {
599 return error("Could not set '%s'", buf
.buf
);
605 * First remove symrefs, then rename the rest, finally create
608 for_each_ref(read_remote_branches
, &rename
);
609 for (i
= 0; i
< remote_branches
.nr
; i
++) {
610 struct string_list_item
*item
= remote_branches
.items
+ i
;
612 unsigned char sha1
[20];
614 resolve_ref(item
->string
, sha1
, 1, &flag
);
615 if (!(flag
& REF_ISSYMREF
))
617 if (delete_ref(item
->string
, NULL
, REF_NODEREF
))
618 die("deleting '%s' failed", item
->string
);
620 for (i
= 0; i
< remote_branches
.nr
; i
++) {
621 struct string_list_item
*item
= remote_branches
.items
+ i
;
626 strbuf_addstr(&buf
, item
->string
);
627 strbuf_splice(&buf
, strlen("refs/remotes/"), strlen(rename
.old
),
628 rename
.new, strlen(rename
.new));
630 strbuf_addf(&buf2
, "remote: renamed %s to %s",
631 item
->string
, buf
.buf
);
632 if (rename_ref(item
->string
, buf
.buf
, buf2
.buf
))
633 die("renaming '%s' failed", item
->string
);
635 for (i
= 0; i
< remote_branches
.nr
; i
++) {
636 struct string_list_item
*item
= remote_branches
.items
+ i
;
641 strbuf_addstr(&buf
, item
->string
);
642 strbuf_splice(&buf
, strlen("refs/remotes/"), strlen(rename
.old
),
643 rename
.new, strlen(rename
.new));
645 strbuf_addstr(&buf2
, item
->util
);
646 strbuf_splice(&buf2
, strlen("refs/remotes/"), strlen(rename
.old
),
647 rename
.new, strlen(rename
.new));
649 strbuf_addf(&buf3
, "remote: renamed %s to %s",
650 item
->string
, buf
.buf
);
651 if (create_symref(buf
.buf
, buf2
.buf
, buf3
.buf
))
652 die("creating '%s' failed", buf
.buf
);
657 static int remove_branches(struct string_list
*branches
)
660 for (i
= 0; i
< branches
->nr
; i
++) {
661 struct string_list_item
*item
= branches
->items
+ i
;
662 const char *refname
= item
->string
;
663 unsigned char *sha1
= item
->util
;
665 if (delete_ref(refname
, sha1
, 0))
666 result
|= error("Could not remove branch %s", refname
);
671 static int rm(int argc
, const char **argv
)
673 struct option options
[] = {
676 struct remote
*remote
;
677 struct strbuf buf
= STRBUF_INIT
;
678 struct known_remotes known_remotes
= { NULL
, NULL
};
679 struct string_list branches
= { NULL
, 0, 0, 1 };
680 struct string_list skipped
= { NULL
, 0, 0, 1 };
681 struct branches_for_remote cb_data
= {
682 NULL
, &branches
, &skipped
, &known_remotes
687 usage_with_options(builtin_remote_usage
, options
);
689 remote
= remote_get(argv
[1]);
691 die("No such remote: %s", argv
[1]);
693 known_remotes
.to_delete
= remote
;
694 for_each_remote(add_known_remote
, &known_remotes
);
696 strbuf_addf(&buf
, "remote.%s", remote
->name
);
697 if (git_config_rename_section(buf
.buf
, NULL
) < 1)
698 return error("Could not remove config section '%s'", buf
.buf
);
701 for (i
= 0; i
< branch_list
.nr
; i
++) {
702 struct string_list_item
*item
= branch_list
.items
+ i
;
703 struct branch_info
*info
= item
->util
;
704 if (info
->remote_name
&& !strcmp(info
->remote_name
, remote
->name
)) {
705 const char *keys
[] = { "remote", "merge", NULL
}, **k
;
706 for (k
= keys
; *k
; k
++) {
708 strbuf_addf(&buf
, "branch.%s.%s",
710 if (git_config_set(buf
.buf
, NULL
)) {
711 strbuf_release(&buf
);
719 * We cannot just pass a function to for_each_ref() which deletes
720 * the branches one by one, since for_each_ref() relies on cached
721 * refs, which are invalidated when deleting a branch.
723 cb_data
.remote
= remote
;
724 result
= for_each_ref(add_branch_for_removal
, &cb_data
);
725 strbuf_release(&buf
);
728 result
= remove_branches(&branches
);
729 string_list_clear(&branches
, 1);
732 fprintf(stderr
, skipped
.nr
== 1 ?
733 "Note: A non-remote branch was not removed; "
734 "to delete it, use:\n" :
735 "Note: Non-remote branches were not removed; "
736 "to delete them, use:\n");
737 for (i
= 0; i
< skipped
.nr
; i
++)
738 fprintf(stderr
, " git branch -d %s\n",
739 skipped
.items
[i
].string
);
741 string_list_clear(&skipped
, 0);
746 void clear_push_info(void *util
, const char *string
)
748 struct push_info
*info
= util
;
753 static void free_remote_ref_states(struct ref_states
*states
)
755 string_list_clear(&states
->new, 0);
756 string_list_clear(&states
->stale
, 0);
757 string_list_clear(&states
->tracked
, 0);
758 string_list_clear(&states
->heads
, 0);
759 string_list_clear_func(&states
->push
, clear_push_info
);
762 static int append_ref_to_tracked_list(const char *refname
,
763 const unsigned char *sha1
, int flags
, void *cb_data
)
765 struct ref_states
*states
= cb_data
;
766 struct refspec refspec
;
768 if (flags
& REF_ISSYMREF
)
771 memset(&refspec
, 0, sizeof(refspec
));
772 refspec
.dst
= (char *)refname
;
773 if (!remote_find_tracking(states
->remote
, &refspec
))
774 string_list_append(abbrev_branch(refspec
.src
), &states
->tracked
);
779 static int get_remote_ref_states(const char *name
,
780 struct ref_states
*states
,
783 struct transport
*transport
;
784 const struct ref
*remote_refs
;
786 states
->remote
= remote_get(name
);
788 return error("No such remote: %s", name
);
793 transport
= transport_get(NULL
, states
->remote
->url_nr
> 0 ?
794 states
->remote
->url
[0] : NULL
);
795 remote_refs
= transport_get_remote_refs(transport
);
796 transport_disconnect(transport
);
799 if (query
& GET_REF_STATES
)
800 get_ref_states(remote_refs
, states
);
801 if (query
& GET_HEAD_NAMES
)
802 get_head_names(remote_refs
, states
);
803 if (query
& GET_PUSH_REF_STATES
)
804 get_push_ref_states(remote_refs
, states
);
806 for_each_ref(append_ref_to_tracked_list
, states
);
807 sort_string_list(&states
->tracked
);
808 get_push_ref_states_noquery(states
);
815 struct string_list
*list
;
816 struct ref_states
*states
;
821 int add_remote_to_show_info(struct string_list_item
*item
, void *cb_data
)
823 struct show_info
*info
= cb_data
;
824 int n
= strlen(item
->string
);
827 string_list_insert(item
->string
, info
->list
);
831 int show_remote_info_item(struct string_list_item
*item
, void *cb_data
)
833 struct show_info
*info
= cb_data
;
834 struct ref_states
*states
= info
->states
;
835 const char *name
= item
->string
;
837 if (states
->queried
) {
838 const char *fmt
= "%s";
839 const char *arg
= "";
840 if (string_list_has_string(&states
->new, name
)) {
841 fmt
= " new (next fetch will store in remotes/%s)";
842 arg
= states
->remote
->name
;
843 } else if (string_list_has_string(&states
->tracked
, name
))
845 else if (string_list_has_string(&states
->stale
, name
))
846 arg
= " stale (use 'git remote prune' to remove)";
849 printf(" %-*s", info
->width
, name
);
853 printf(" %s\n", name
);
858 int add_local_to_show_info(struct string_list_item
*branch_item
, void *cb_data
)
860 struct show_info
*show_info
= cb_data
;
861 struct ref_states
*states
= show_info
->states
;
862 struct branch_info
*branch_info
= branch_item
->util
;
863 struct string_list_item
*item
;
866 if (!branch_info
->merge
.nr
|| !branch_info
->remote_name
||
867 strcmp(states
->remote
->name
, branch_info
->remote_name
))
869 if ((n
= strlen(branch_item
->string
)) > show_info
->width
)
870 show_info
->width
= n
;
871 if (branch_info
->rebase
)
872 show_info
->any_rebase
= 1;
874 item
= string_list_insert(branch_item
->string
, show_info
->list
);
875 item
->util
= branch_info
;
880 int show_local_info_item(struct string_list_item
*item
, void *cb_data
)
882 struct show_info
*show_info
= cb_data
;
883 struct branch_info
*branch_info
= item
->util
;
884 struct string_list
*merge
= &branch_info
->merge
;
888 if (branch_info
->rebase
&& branch_info
->merge
.nr
> 1) {
889 error("invalid branch.%s.merge; cannot rebase onto > 1 branch",
894 printf(" %-*s ", show_info
->width
, item
->string
);
895 if (branch_info
->rebase
) {
896 printf("rebases onto remote %s\n", merge
->items
[0].string
);
898 } else if (show_info
->any_rebase
) {
899 printf(" merges with remote %s\n", merge
->items
[0].string
);
900 also
= " and with remote";
902 printf("merges with remote %s\n", merge
->items
[0].string
);
903 also
= " and with remote";
905 for (i
= 1; i
< merge
->nr
; i
++)
906 printf(" %-*s %s %s\n", show_info
->width
, "", also
,
907 merge
->items
[i
].string
);
912 int add_push_to_show_info(struct string_list_item
*push_item
, void *cb_data
)
914 struct show_info
*show_info
= cb_data
;
915 struct push_info
*push_info
= push_item
->util
;
916 struct string_list_item
*item
;
918 if ((n
= strlen(push_item
->string
)) > show_info
->width
)
919 show_info
->width
= n
;
920 if ((n
= strlen(push_info
->dest
)) > show_info
->width2
)
921 show_info
->width2
= n
;
922 item
= string_list_append(push_item
->string
, show_info
->list
);
923 item
->util
= push_item
->util
;
928 * Sorting comparison for a string list that has push_info
929 * structs in its util field
931 static int cmp_string_with_push(const void *va
, const void *vb
)
933 const struct string_list_item
*a
= va
;
934 const struct string_list_item
*b
= vb
;
935 const struct push_info
*a_push
= a
->util
;
936 const struct push_info
*b_push
= b
->util
;
937 int cmp
= strcmp(a
->string
, b
->string
);
938 return cmp
? cmp
: strcmp(a_push
->dest
, b_push
->dest
);
941 int show_push_info_item(struct string_list_item
*item
, void *cb_data
)
943 struct show_info
*show_info
= cb_data
;
944 struct push_info
*push_info
= item
->util
;
945 char *src
= item
->string
, *status
= NULL
;
947 switch (push_info
->status
) {
948 case PUSH_STATUS_CREATE
:
951 case PUSH_STATUS_DELETE
:
955 case PUSH_STATUS_UPTODATE
:
956 status
= "up to date";
958 case PUSH_STATUS_FASTFORWARD
:
959 status
= "fast forwardable";
961 case PUSH_STATUS_OUTOFDATE
:
962 status
= "local out of date";
964 case PUSH_STATUS_NOTQUERIED
:
968 printf(" %-*s %s to %-*s (%s)\n", show_info
->width
, src
,
969 push_info
->forced
? "forces" : "pushes",
970 show_info
->width2
, push_info
->dest
, status
);
972 printf(" %-*s %s to %s\n", show_info
->width
, src
,
973 push_info
->forced
? "forces" : "pushes",
978 static int show(int argc
, const char **argv
)
980 int no_query
= 0, result
= 0, query_flag
= 0;
981 struct option options
[] = {
982 OPT_GROUP("show specific options"),
983 OPT_BOOLEAN('n', NULL
, &no_query
, "do not query remotes"),
986 struct ref_states states
;
987 struct string_list info_list
= { NULL
, 0, 0, 0 };
988 struct show_info info
;
990 argc
= parse_options(argc
, argv
, NULL
, options
, builtin_remote_usage
,
997 query_flag
= (GET_REF_STATES
| GET_HEAD_NAMES
| GET_PUSH_REF_STATES
);
999 memset(&states
, 0, sizeof(states
));
1000 memset(&info
, 0, sizeof(info
));
1001 info
.states
= &states
;
1002 info
.list
= &info_list
;
1003 for (; argc
; argc
--, argv
++) {
1006 get_remote_ref_states(*argv
, &states
, query_flag
);
1008 printf("* remote %s\n", *argv
);
1009 if (states
.remote
->url_nr
) {
1010 for (i
=0; i
< states
.remote
->url_nr
; i
++)
1011 printf(" URL: %s\n", states
.remote
->url
[i
]);
1013 printf(" URL: %s\n", "(no URL)");
1015 printf(" HEAD branch: (not queried)\n");
1016 else if (!states
.heads
.nr
)
1017 printf(" HEAD branch: (unknown)\n");
1018 else if (states
.heads
.nr
== 1)
1019 printf(" HEAD branch: %s\n", states
.heads
.items
[0].string
);
1021 printf(" HEAD branch (remote HEAD is ambiguous,"
1022 " may be one of the following):\n");
1023 for (i
= 0; i
< states
.heads
.nr
; i
++)
1024 printf(" %s\n", states
.heads
.items
[i
].string
);
1027 /* remote branch info */
1029 for_each_string_list(add_remote_to_show_info
, &states
.new, &info
);
1030 for_each_string_list(add_remote_to_show_info
, &states
.tracked
, &info
);
1031 for_each_string_list(add_remote_to_show_info
, &states
.stale
, &info
);
1033 printf(" Remote branch%s:%s\n",
1034 info
.list
->nr
> 1 ? "es" : "",
1035 no_query
? " (status not queried)" : "");
1036 for_each_string_list(show_remote_info_item
, info
.list
, &info
);
1037 string_list_clear(info
.list
, 0);
1041 info
.any_rebase
= 0;
1042 for_each_string_list(add_local_to_show_info
, &branch_list
, &info
);
1044 printf(" Local branch%s configured for 'git pull':\n",
1045 info
.list
->nr
> 1 ? "es" : "");
1046 for_each_string_list(show_local_info_item
, info
.list
, &info
);
1047 string_list_clear(info
.list
, 0);
1050 if (states
.remote
->mirror
)
1051 printf(" Local refs will be mirrored by 'git push'\n");
1053 info
.width
= info
.width2
= 0;
1054 for_each_string_list(add_push_to_show_info
, &states
.push
, &info
);
1055 qsort(info
.list
->items
, info
.list
->nr
,
1056 sizeof(*info
.list
->items
), cmp_string_with_push
);
1058 printf(" Local ref%s configured for 'git push'%s:\n",
1059 info
.list
->nr
> 1 ? "s" : "",
1060 no_query
? " (status not queried)" : "");
1061 for_each_string_list(show_push_info_item
, info
.list
, &info
);
1062 string_list_clear(info
.list
, 0);
1064 free_remote_ref_states(&states
);
1070 static int set_head(int argc
, const char **argv
)
1072 int i
, opt_a
= 0, opt_d
= 0, result
= 0;
1073 struct strbuf buf
= STRBUF_INIT
, buf2
= STRBUF_INIT
;
1074 char *head_name
= NULL
;
1076 struct option options
[] = {
1077 OPT_GROUP("set-head specific options"),
1078 OPT_BOOLEAN('a', "auto", &opt_a
,
1079 "set refs/remotes/<name>/HEAD according to remote"),
1080 OPT_BOOLEAN('d', "delete", &opt_d
,
1081 "delete refs/remotes/<name>/HEAD"),
1084 argc
= parse_options(argc
, argv
, NULL
, options
, builtin_remote_usage
,
1087 strbuf_addf(&buf
, "refs/remotes/%s/HEAD", argv
[0]);
1089 if (!opt_a
&& !opt_d
&& argc
== 2) {
1090 head_name
= xstrdup(argv
[1]);
1091 } else if (opt_a
&& !opt_d
&& argc
== 1) {
1092 struct ref_states states
;
1093 memset(&states
, 0, sizeof(states
));
1094 get_remote_ref_states(argv
[0], &states
, GET_HEAD_NAMES
);
1095 if (!states
.heads
.nr
)
1096 result
|= error("Cannot determine remote HEAD");
1097 else if (states
.heads
.nr
> 1) {
1098 result
|= error("Multiple remote HEAD branches. "
1099 "Please choose one explicitly with:");
1100 for (i
= 0; i
< states
.heads
.nr
; i
++)
1101 fprintf(stderr
, " git remote set-head %s %s\n",
1102 argv
[0], states
.heads
.items
[i
].string
);
1104 head_name
= xstrdup(states
.heads
.items
[0].string
);
1105 free_remote_ref_states(&states
);
1106 } else if (opt_d
&& !opt_a
&& argc
== 1) {
1107 if (delete_ref(buf
.buf
, NULL
, REF_NODEREF
))
1108 result
|= error("Could not delete %s", buf
.buf
);
1110 usage_with_options(builtin_remote_usage
, options
);
1113 unsigned char sha1
[20];
1114 strbuf_addf(&buf2
, "refs/remotes/%s/%s", argv
[0], head_name
);
1115 /* make sure it's valid */
1116 if (!resolve_ref(buf2
.buf
, sha1
, 1, NULL
))
1117 result
|= error("Not a valid ref: %s", buf2
.buf
);
1118 else if (create_symref(buf
.buf
, buf2
.buf
, "remote set-head"))
1119 result
|= error("Could not setup %s", buf
.buf
);
1121 printf("%s/HEAD set to %s\n", argv
[0], head_name
);
1125 strbuf_release(&buf
);
1126 strbuf_release(&buf2
);
1130 static int prune(int argc
, const char **argv
)
1132 int dry_run
= 0, result
= 0;
1133 struct option options
[] = {
1134 OPT_GROUP("prune specific options"),
1135 OPT__DRY_RUN(&dry_run
),
1139 argc
= parse_options(argc
, argv
, NULL
, options
, builtin_remote_usage
,
1143 usage_with_options(builtin_remote_usage
, options
);
1145 for (; argc
; argc
--, argv
++)
1146 result
|= prune_remote(*argv
, dry_run
);
1151 static int prune_remote(const char *remote
, int dry_run
)
1154 struct ref_states states
;
1155 const char *dangling_msg
= dry_run
1156 ? " %s will become dangling!\n"
1157 : " %s has become dangling!\n";
1159 memset(&states
, 0, sizeof(states
));
1160 get_remote_ref_states(remote
, &states
, GET_REF_STATES
);
1162 if (states
.stale
.nr
) {
1163 printf("Pruning %s\n", remote
);
1165 states
.remote
->url_nr
1166 ? states
.remote
->url
[0]
1170 for (i
= 0; i
< states
.stale
.nr
; i
++) {
1171 const char *refname
= states
.stale
.items
[i
].util
;
1174 result
|= delete_ref(refname
, NULL
, 0);
1176 printf(" * [%s] %s\n", dry_run
? "would prune" : "pruned",
1177 abbrev_ref(refname
, "refs/remotes/"));
1178 warn_dangling_symref(dangling_msg
, refname
);
1181 free_remote_ref_states(&states
);
1185 static int get_one_remote_for_update(struct remote
*remote
, void *priv
)
1187 struct string_list
*list
= priv
;
1188 if (!remote
->skip_default_update
)
1189 string_list_append(remote
->name
, list
);
1193 struct remote_group
{
1195 struct string_list
*list
;
1198 static int get_remote_group(const char *key
, const char *value
, void *num_hits
)
1200 if (!prefixcmp(key
, "remotes.") &&
1201 !strcmp(key
+ 8, remote_group
.name
)) {
1202 /* split list by white space */
1203 int space
= strcspn(value
, " \t\n");
1206 string_list_append(xstrndup(value
, space
),
1208 ++*((int *)num_hits
);
1210 value
+= space
+ (value
[space
] != '\0');
1211 space
= strcspn(value
, " \t\n");
1218 static int update(int argc
, const char **argv
)
1220 int i
, result
= 0, prune
= 0;
1221 struct string_list list
= { NULL
, 0, 0, 0 };
1222 static const char *default_argv
[] = { NULL
, "default", NULL
};
1223 struct option options
[] = {
1224 OPT_GROUP("update specific options"),
1225 OPT_BOOLEAN('p', "prune", &prune
,
1226 "prune remotes after fetching"),
1230 argc
= parse_options(argc
, argv
, NULL
, options
, builtin_remote_usage
,
1231 PARSE_OPT_KEEP_ARGV0
);
1234 argv
= default_argv
;
1237 remote_group
.list
= &list
;
1238 for (i
= 1; i
< argc
; i
++) {
1239 int groups_found
= 0;
1240 remote_group
.name
= argv
[i
];
1241 result
= git_config(get_remote_group
, &groups_found
);
1242 if (!groups_found
&& (i
!= 1 || strcmp(argv
[1], "default"))) {
1243 struct remote
*remote
;
1244 if (!remote_is_configured(argv
[i
]))
1245 die("No such remote or remote group: %s",
1247 remote
= remote_get(argv
[i
]);
1248 string_list_append(remote
->name
, remote_group
.list
);
1252 if (!result
&& !list
.nr
&& argc
== 2 && !strcmp(argv
[1], "default"))
1253 result
= for_each_remote(get_one_remote_for_update
, &list
);
1255 for (i
= 0; i
< list
.nr
; i
++) {
1256 int err
= fetch_remote(list
.items
[i
].string
);
1259 result
|= prune_remote(list
.items
[i
].string
, 0);
1262 /* all names were strdup()ed or strndup()ed */
1263 list
.strdup_strings
= 1;
1264 string_list_clear(&list
, 0);
1269 static int get_one_entry(struct remote
*remote
, void *priv
)
1271 struct string_list
*list
= priv
;
1273 if (remote
->url_nr
> 0) {
1276 for (i
= 0; i
< remote
->url_nr
; i
++)
1277 string_list_append(remote
->name
, list
)->util
= (void *)remote
->url
[i
];
1279 string_list_append(remote
->name
, list
)->util
= NULL
;
1284 static int show_all(void)
1286 struct string_list list
= { NULL
, 0, 0 };
1287 int result
= for_each_remote(get_one_entry
, &list
);
1292 sort_string_list(&list
);
1293 for (i
= 0; i
< list
.nr
; i
++) {
1294 struct string_list_item
*item
= list
.items
+ i
;
1296 printf("%s\t%s\n", item
->string
,
1297 item
->util
? (const char *)item
->util
: "");
1299 if (i
&& !strcmp((item
- 1)->string
, item
->string
))
1301 printf("%s\n", item
->string
);
1308 int cmd_remote(int argc
, const char **argv
, const char *prefix
)
1310 struct option options
[] = {
1311 OPT__VERBOSE(&verbose
),
1316 argc
= parse_options(argc
, argv
, prefix
, options
, builtin_remote_usage
,
1317 PARSE_OPT_STOP_AT_NON_OPTION
);
1320 result
= show_all();
1321 else if (!strcmp(argv
[0], "add"))
1322 result
= add(argc
, argv
);
1323 else if (!strcmp(argv
[0], "rename"))
1324 result
= mv(argc
, argv
);
1325 else if (!strcmp(argv
[0], "rm"))
1326 result
= rm(argc
, argv
);
1327 else if (!strcmp(argv
[0], "set-head"))
1328 result
= set_head(argc
, argv
);
1329 else if (!strcmp(argv
[0], "show"))
1330 result
= show(argc
, argv
);
1331 else if (!strcmp(argv
[0], "prune"))
1332 result
= prune(argc
, argv
);
1333 else if (!strcmp(argv
[0], "update"))
1334 result
= update(argc
, argv
);
1336 error("Unknown subcommand: %s", argv
[0]);
1337 usage_with_options(builtin_remote_usage
, options
);
1340 return result
? 1 : 0;