6 #include "object-name.h"
7 #include "object-store-ll.h"
10 #include "string-list.h"
11 #include "parse-options.h"
13 static const char * const show_ref_usage
[] = {
14 N_("git show-ref [-q | --quiet] [--verify] [--head] [-d | --dereference]\n"
15 " [-s | --hash[=<n>]] [--abbrev[=<n>]] [--tags]\n"
16 " [--heads] [--] [<pattern>...]"),
17 N_("git show-ref --exclude-existing[=<pattern>]"),
21 static int deref_tags
, show_head
, tags_only
, heads_only
, found_match
, verify
,
22 quiet
, hash_only
, abbrev
, exclude_arg
;
23 static const char **pattern
;
24 static const char *exclude_existing_arg
;
26 static void show_one(const char *refname
, const struct object_id
*oid
)
29 struct object_id peeled
;
31 if (!repo_has_object_file(the_repository
, oid
))
32 die("git show-ref: bad ref %s (%s)", refname
,
38 hex
= repo_find_unique_abbrev(the_repository
, oid
, abbrev
);
42 printf("%s %s\n", hex
, refname
);
47 if (!peel_iterated_oid(oid
, &peeled
)) {
48 hex
= repo_find_unique_abbrev(the_repository
, &peeled
, abbrev
);
49 printf("%s %s^{}\n", hex
, refname
);
53 static int show_ref(const char *refname
, const struct object_id
*oid
,
54 int flag UNUSED
, void *cbdata UNUSED
)
56 if (show_head
&& !strcmp(refname
, "HEAD"))
60 int reflen
= strlen(refname
);
61 const char **p
= pattern
, *m
;
62 while ((m
= *p
++) != NULL
) {
66 if (memcmp(m
, refname
+ reflen
- len
, len
))
70 if (refname
[reflen
- len
- 1] == '/')
79 show_one(refname
, oid
);
84 static int add_existing(const char *refname
,
85 const struct object_id
*oid UNUSED
,
86 int flag UNUSED
, void *cbdata
)
88 struct string_list
*list
= (struct string_list
*)cbdata
;
89 string_list_insert(list
, refname
);
94 * read "^(?:<anything>\s)?<refname>(?:\^\{\})?$" from the standard input,
96 * (1) strip "^{}" at the end of line if any;
97 * (2) ignore if match is provided and does not head-match refname;
98 * (3) warn if refname is not a well-formed refname and skip;
99 * (4) ignore if refname is a ref that exists in the local repository;
100 * (5) otherwise output the line.
102 static int exclude_existing(const char *match
)
104 static struct string_list existing_refs
= STRING_LIST_INIT_DUP
;
106 int matchlen
= match
? strlen(match
) : 0;
108 for_each_ref(add_existing
, &existing_refs
);
109 while (fgets(buf
, sizeof(buf
), stdin
)) {
111 int len
= strlen(buf
);
113 if (len
> 0 && buf
[len
- 1] == '\n')
115 if (3 <= len
&& !strcmp(buf
+ len
- 3, "^{}")) {
119 for (ref
= buf
+ len
; buf
< ref
; ref
--)
120 if (isspace(ref
[-1]))
123 int reflen
= buf
+ len
- ref
;
124 if (reflen
< matchlen
)
126 if (strncmp(ref
, match
, matchlen
))
129 if (check_refname_format(ref
, 0)) {
130 warning("ref '%s' ignored", ref
);
133 if (!string_list_has_string(&existing_refs
, ref
)) {
140 static int hash_callback(const struct option
*opt
, const char *arg
, int unset
)
143 /* Use full length SHA1 if no argument */
146 return parse_opt_abbrev_cb(opt
, arg
, unset
);
149 static int exclude_existing_callback(const struct option
*opt
, const char *arg
,
152 BUG_ON_OPT_NEG(unset
);
154 *(const char **)opt
->value
= arg
;
158 static const struct option show_ref_options
[] = {
159 OPT_BOOL(0, "tags", &tags_only
, N_("only show tags (can be combined with heads)")),
160 OPT_BOOL(0, "heads", &heads_only
, N_("only show heads (can be combined with tags)")),
161 OPT_BOOL(0, "verify", &verify
, N_("stricter reference checking, "
162 "requires exact ref path")),
163 OPT_HIDDEN_BOOL('h', NULL
, &show_head
,
164 N_("show the HEAD reference, even if it would be filtered out")),
165 OPT_BOOL(0, "head", &show_head
,
166 N_("show the HEAD reference, even if it would be filtered out")),
167 OPT_BOOL('d', "dereference", &deref_tags
,
168 N_("dereference tags into object IDs")),
169 OPT_CALLBACK_F('s', "hash", &abbrev
, N_("n"),
170 N_("only show SHA1 hash using <n> digits"),
171 PARSE_OPT_OPTARG
, &hash_callback
),
172 OPT__ABBREV(&abbrev
),
174 N_("do not print results to stdout (useful with --verify)")),
175 OPT_CALLBACK_F(0, "exclude-existing", &exclude_existing_arg
,
176 N_("pattern"), N_("show refs from stdin that aren't in local repository"),
177 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
, exclude_existing_callback
),
181 int cmd_show_ref(int argc
, const char **argv
, const char *prefix
)
183 git_config(git_default_config
, NULL
);
185 argc
= parse_options(argc
, argv
, prefix
, show_ref_options
,
189 return exclude_existing(exclude_existing_arg
);
197 die("--verify requires a reference");
199 struct object_id oid
;
201 if ((starts_with(*pattern
, "refs/") || !strcmp(*pattern
, "HEAD")) &&
202 !read_ref(*pattern
, &oid
)) {
203 show_one(*pattern
, &oid
);
206 die("'%s' - not a valid ref", *pattern
);
215 head_ref(show_ref
, NULL
);
216 if (heads_only
|| tags_only
) {
218 for_each_fullref_in("refs/heads/", show_ref
, NULL
);
220 for_each_fullref_in("refs/tags/", show_ref
, NULL
);
222 for_each_ref(show_ref
, NULL
);
225 if (verify
&& !quiet
)