6 #include "string-list.h"
 
   7 #include "parse-options.h"
 
   9 static const char * const show_ref_usage[] = {
 
  10         "git show-ref [-q|--quiet] [--verify] [--head] [-d|--dereference] [-s|--hash[=<n>]] [--abbrev[=<n>]] [--tags] [--heads] [--] [pattern*] ",
 
  11         "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)
 
  33         unsigned char peeled[20];
 
  35         if (tags_only || heads_only) {
 
  38                 match = heads_only && !prefixcmp(refname, "refs/heads/");
 
  39                 match |= tags_only && !prefixcmp(refname, "refs/tags/");
 
  44                 int reflen = strlen(refname);
 
  45                 const char **p = pattern, *m;
 
  46                 while ((m = *p++) != NULL) {
 
  50                         if (memcmp(m, refname + reflen - len, len))
 
  54                         /* "--verify" requires an exact match */
 
  57                         if (refname[reflen - len - 1] == '/')
 
  66         /* This changes the semantics slightly that even under quiet we
 
  67          * detect and return error if the repository is corrupt and
 
  68          * ref points at a nonexistent object.
 
  70         if (!has_sha1_file(sha1))
 
  71                 die("git show-ref: bad ref %s (%s)", refname,
 
  77         show_one(refname, sha1);
 
  82         if ((flag & REF_ISPACKED) && !peel_ref(refname, peeled)) {
 
  83                 if (!is_null_sha1(peeled)) {
 
  84                         hex = find_unique_abbrev(peeled, abbrev);
 
  85                         printf("%s %s^{}\n", hex, refname);
 
  89                 obj = parse_object(sha1);
 
  91                         die("git show-ref: bad ref %s (%s)", refname,
 
  93                 if (obj->type == OBJ_TAG) {
 
  94                         obj = deref_tag(obj, refname, 0);
 
  96                                 die("git show-ref: bad tag at ref %s (%s)", refname,
 
  98                         hex = find_unique_abbrev(obj->sha1, abbrev);
 
  99                         printf("%s %s^{}\n", hex, refname);
 
 105 static int add_existing(const char *refname, const unsigned char *sha1, int flag, void *cbdata)
 
 107         struct string_list *list = (struct string_list *)cbdata;
 
 108         string_list_insert(list, refname);
 
 113  * read "^(?:<anything>\s)?<refname>(?:\^\{\})?$" from the standard input,
 
 115  * (1) strip "^{}" at the end of line if any;
 
 116  * (2) ignore if match is provided and does not head-match refname;
 
 117  * (3) warn if refname is not a well-formed refname and skip;
 
 118  * (4) ignore if refname is a ref that exists in the local repository;
 
 119  * (5) otherwise output the line.
 
 121 static int exclude_existing(const char *match)
 
 123         static struct string_list existing_refs = STRING_LIST_INIT_NODUP;
 
 125         int matchlen = match ? strlen(match) : 0;
 
 127         for_each_ref(add_existing, &existing_refs);
 
 128         while (fgets(buf, sizeof(buf), stdin)) {
 
 130                 int len = strlen(buf);
 
 132                 if (len > 0 && buf[len - 1] == '\n')
 
 134                 if (3 <= len && !strcmp(buf + len - 3, "^{}")) {
 
 138                 for (ref = buf + len; buf < ref; ref--)
 
 139                         if (isspace(ref[-1]))
 
 142                         int reflen = buf + len - ref;
 
 143                         if (reflen < matchlen)
 
 145                         if (strncmp(ref, match, matchlen))
 
 148                 if (check_refname_format(ref, 0)) {
 
 149                         warning("ref '%s' ignored", ref);
 
 152                 if (!string_list_has_string(&existing_refs, ref)) {
 
 159 static int hash_callback(const struct option *opt, const char *arg, int unset)
 
 162         /* Use full length SHA1 if no argument */
 
 165         return parse_opt_abbrev_cb(opt, arg, unset);
 
 168 static int exclude_existing_callback(const struct option *opt, const char *arg,
 
 172         *(const char **)opt->value = arg;
 
 176 static int help_callback(const struct option *opt, const char *arg, int unset)
 
 181 static const struct option show_ref_options[] = {
 
 182         OPT_BOOLEAN(0, "tags", &tags_only, "only show tags (can be combined with heads)"),
 
 183         OPT_BOOLEAN(0, "heads", &heads_only, "only show heads (can be combined with tags)"),
 
 184         OPT_BOOLEAN(0, "verify", &verify, "stricter reference checking, "
 
 185                     "requires exact ref path"),
 
 186         { OPTION_BOOLEAN, 'h', NULL, &show_head, NULL,
 
 187           "show the HEAD reference",
 
 188           PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
 
 189         OPT_BOOLEAN(0, "head", &show_head, "show the HEAD reference"),
 
 190         OPT_BOOLEAN('d', "dereference", &deref_tags,
 
 191                     "dereference tags into object IDs"),
 
 192         { OPTION_CALLBACK, 's', "hash", &abbrev, "n",
 
 193           "only show SHA1 hash using <n> digits",
 
 194           PARSE_OPT_OPTARG, &hash_callback },
 
 195         OPT__ABBREV(&abbrev),
 
 197                    "do not print results to stdout (useful with --verify)"),
 
 198         { OPTION_CALLBACK, 0, "exclude-existing", &exclude_existing_arg,
 
 199           "pattern", "show refs from stdin that aren't in local repository",
 
 200           PARSE_OPT_OPTARG | PARSE_OPT_NONEG, exclude_existing_callback },
 
 201         { OPTION_CALLBACK, 0, "help-all", NULL, NULL, "show usage",
 
 202           PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, help_callback },
 
 206 int cmd_show_ref(int argc, const char **argv, const char *prefix)
 
 208         if (argc == 2 && !strcmp(argv[1], "-h"))
 
 209                 usage_with_options(show_ref_usage, show_ref_options);
 
 211         argc = parse_options(argc, argv, prefix, show_ref_options,
 
 212                              show_ref_usage, PARSE_OPT_NO_INTERNAL_HELP);
 
 215                 return exclude_existing(exclude_existing_arg);
 
 223                         die("--verify requires a reference");
 
 225                         unsigned char sha1[20];
 
 227                         if (!prefixcmp(*pattern, "refs/") &&
 
 228                             !read_ref(*pattern, sha1)) {
 
 230                                         show_one(*pattern, sha1);
 
 233                                 die("'%s' - not a valid ref", *pattern);
 
 242                 head_ref(show_ref, NULL);
 
 243         for_each_ref(show_ref, NULL);
 
 245                 if (verify && !quiet)