Browse Source

Merge branch 'jk/remote-default-show'

* jk/remote-default-show:
  git-remote: show all remotes with "git remote show"
maint
Junio C Hamano 17 years ago
parent
commit
141ca95be1
  1. 7
      builtin-remote.c

7
builtin-remote.c

@ -19,6 +19,8 @@ static const char * const builtin_remote_usage[] = {


static int verbose; static int verbose;


static int show_all(void);

static inline int postfixcmp(const char *string, const char *postfix) static inline int postfixcmp(const char *string, const char *postfix)
{ {
int len1 = strlen(string), len2 = strlen(postfix); int len1 = strlen(string), len2 = strlen(postfix);
@ -384,8 +386,11 @@ static int show_or_prune(int argc, const char **argv, int prune)


argc = parse_options(argc, argv, options, builtin_remote_usage, 0); argc = parse_options(argc, argv, options, builtin_remote_usage, 0);


if (argc < 1) if (argc < 1) {
if (!prune)
return show_all();
usage_with_options(builtin_remote_usage, options); usage_with_options(builtin_remote_usage, options);
}


memset(&states, 0, sizeof(states)); memset(&states, 0, sizeof(states));
for (; argc; argc--, argv++) { for (; argc; argc--, argv++) {

Loading…
Cancel
Save