Show usage string for 'git get-tar-commit-id -h'
[gitweb.git] / builtin-check-ref-format.c
index b97b61a0a4d957d6e2cb59eb314e49c06c8d70d8..0a576afd0e51f166f46493d86f4a0914ed8a744b 100644 (file)
@@ -7,8 +7,33 @@
 #include "builtin.h"
 #include "strbuf.h"
 
+/*
+ * Replace each run of adjacent slashes in src with a single slash,
+ * and write the result to dst.
+ *
+ * This function is similar to normalize_path_copy(), but stripped down
+ * to meet check_ref_format's simpler needs.
+ */
+static void collapse_slashes(char *dst, const char *src)
+{
+       char ch;
+       char prev = '\0';
+
+       while ((ch = *src++) != '\0') {
+               if (prev == '/' && ch == prev)
+                       continue;
+
+               *dst++ = ch;
+               prev = ch;
+       }
+       *dst = '\0';
+}
+
 int cmd_check_ref_format(int argc, const char **argv, const char *prefix)
 {
+       if (argc == 2 && !strcmp(argv[1], "-h"))
+               usage(builtin_check_ref_format_usage);
+
        if (argc == 3 && !strcmp(argv[1], "--branch")) {
                struct strbuf sb = STRBUF_INIT;
 
@@ -22,8 +47,7 @@ int cmd_check_ref_format(int argc, const char **argv, const char *prefix)
 
                if (check_ref_format(argv[2]))
                        exit(1);
-               if (normalize_path_copy(refname, argv[2]))
-                       die("Could not normalize ref name '%s'", argv[2]);
+               collapse_slashes(refname, argv[2]);
                printf("%s\n", refname);
                exit(0);
        }