6 #include "string-list.h"
7 #include "parse-options.h"
9 static const char * const show_ref_usage
[] = {
10 N_("git show-ref [-q|--quiet] [--verify] [--head] [-d|--dereference] [-s|--hash[=<n>]] [--abbrev[=<n>]] [--tags] [--heads] [--] [pattern*] "),
11 N_("git show-ref --exclude-existing[=pattern] < ref-list"),
15 static int deref_tags
, show_head
, tags_only
, heads_only
, found_match
, verify
,
16 quiet
, hash_only
, abbrev
, exclude_arg
;
17 static const char **pattern
;
18 static const char *exclude_existing_arg
;
20 static void show_one(const char *refname
, const unsigned char *sha1
)
22 const char *hex
= find_unique_abbrev(sha1
, abbrev
);
26 printf("%s %s\n", hex
, refname
);
29 static int show_ref(const char *refname
, const unsigned char *sha1
, int flag
, void *cbdata
)
32 unsigned char peeled
[20];
34 if (tags_only
|| heads_only
) {
37 match
= heads_only
&& !prefixcmp(refname
, "refs/heads/");
38 match
|= tags_only
&& !prefixcmp(refname
, "refs/tags/");
43 int reflen
= strlen(refname
);
44 const char **p
= pattern
, *m
;
45 while ((m
= *p
++) != NULL
) {
49 if (memcmp(m
, refname
+ reflen
- len
, len
))
53 /* "--verify" requires an exact match */
56 if (refname
[reflen
- len
- 1] == '/')
65 /* This changes the semantics slightly that even under quiet we
66 * detect and return error if the repository is corrupt and
67 * ref points at a nonexistent object.
69 if (!has_sha1_file(sha1
))
70 die("git show-ref: bad ref %s (%s)", refname
,
76 show_one(refname
, sha1
);
81 if (!peel_ref(refname
, peeled
)) {
82 hex
= find_unique_abbrev(peeled
, abbrev
);
83 printf("%s %s^{}\n", hex
, refname
);
88 static int add_existing(const char *refname
, const unsigned char *sha1
, int flag
, void *cbdata
)
90 struct string_list
*list
= (struct string_list
*)cbdata
;
91 string_list_insert(list
, refname
);
96 * read "^(?:<anything>\s)?<refname>(?:\^\{\})?$" from the standard input,
98 * (1) strip "^{}" at the end of line if any;
99 * (2) ignore if match is provided and does not head-match refname;
100 * (3) warn if refname is not a well-formed refname and skip;
101 * (4) ignore if refname is a ref that exists in the local repository;
102 * (5) otherwise output the line.
104 static int exclude_existing(const char *match
)
106 static struct string_list existing_refs
= STRING_LIST_INIT_DUP
;
108 int matchlen
= match
? strlen(match
) : 0;
110 for_each_ref(add_existing
, &existing_refs
);
111 while (fgets(buf
, sizeof(buf
), stdin
)) {
113 int len
= strlen(buf
);
115 if (len
> 0 && buf
[len
- 1] == '\n')
117 if (3 <= len
&& !strcmp(buf
+ len
- 3, "^{}")) {
121 for (ref
= buf
+ len
; buf
< ref
; ref
--)
122 if (isspace(ref
[-1]))
125 int reflen
= buf
+ len
- ref
;
126 if (reflen
< matchlen
)
128 if (strncmp(ref
, match
, matchlen
))
131 if (check_refname_format(ref
, 0)) {
132 warning("ref '%s' ignored", ref
);
135 if (!string_list_has_string(&existing_refs
, ref
)) {
142 static int hash_callback(const struct option
*opt
, const char *arg
, int unset
)
145 /* Use full length SHA1 if no argument */
148 return parse_opt_abbrev_cb(opt
, arg
, unset
);
151 static int exclude_existing_callback(const struct option
*opt
, const char *arg
,
155 *(const char **)opt
->value
= arg
;
159 static int help_callback(const struct option
*opt
, const char *arg
, int unset
)
164 static const struct option show_ref_options
[] = {
165 OPT_BOOLEAN(0, "tags", &tags_only
, N_("only show tags (can be combined with heads)")),
166 OPT_BOOLEAN(0, "heads", &heads_only
, N_("only show heads (can be combined with tags)")),
167 OPT_BOOLEAN(0, "verify", &verify
, N_("stricter reference checking, "
168 "requires exact ref path")),
169 { OPTION_BOOLEAN
, 'h', NULL
, &show_head
, NULL
,
170 N_("show the HEAD reference"),
171 PARSE_OPT_NOARG
| PARSE_OPT_HIDDEN
},
172 OPT_BOOLEAN(0, "head", &show_head
, N_("show the HEAD reference")),
173 OPT_BOOLEAN('d', "dereference", &deref_tags
,
174 N_("dereference tags into object IDs")),
175 { OPTION_CALLBACK
, 's', "hash", &abbrev
, N_("n"),
176 N_("only show SHA1 hash using <n> digits"),
177 PARSE_OPT_OPTARG
, &hash_callback
},
178 OPT__ABBREV(&abbrev
),
180 N_("do not print results to stdout (useful with --verify)")),
181 { OPTION_CALLBACK
, 0, "exclude-existing", &exclude_existing_arg
,
182 N_("pattern"), N_("show refs from stdin that aren't in local repository"),
183 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
, exclude_existing_callback
},
184 { OPTION_CALLBACK
, 0, "help-all", NULL
, NULL
, N_("show usage"),
185 PARSE_OPT_HIDDEN
| PARSE_OPT_NOARG
, help_callback
},
189 int cmd_show_ref(int argc
, const char **argv
, const char *prefix
)
191 if (argc
== 2 && !strcmp(argv
[1], "-h"))
192 usage_with_options(show_ref_usage
, show_ref_options
);
194 argc
= parse_options(argc
, argv
, prefix
, show_ref_options
,
195 show_ref_usage
, PARSE_OPT_NO_INTERNAL_HELP
);
198 return exclude_existing(exclude_existing_arg
);
206 die("--verify requires a reference");
208 unsigned char sha1
[20];
210 if (!prefixcmp(*pattern
, "refs/") &&
211 !read_ref(*pattern
, sha1
)) {
213 show_one(*pattern
, sha1
);
216 die("'%s' - not a valid ref", *pattern
);
225 head_ref(show_ref
, NULL
);
226 for_each_ref(show_ref
, NULL
);
228 if (verify
&& !quiet
)