fetching submodules: respect `submodule.fetchJobs` config option
[gitweb.git] / show-index.c
index 45bb535773fd9c36f73502df9462f7de800009c8..d9e4903fed24f5916962f8d315eb680f9b4013ff 100644 (file)
@@ -1,6 +1,9 @@
 #include "cache.h"
 #include "pack.h"
 
+static const char show_index_usage[] =
+"git show-index";
+
 int main(int argc, char **argv)
 {
        int i;
@@ -8,6 +11,10 @@ int main(int argc, char **argv)
        unsigned int version;
        static unsigned int top_index[256];
 
+       git_setup_gettext();
+
+       if (argc != 1)
+               usage(show_index_usage);
        if (fread(top_index, 2 * 4, 1, stdin) != 1)
                die("unable to read header");
        if (top_index[0] == htonl(PACK_IDX_SIGNATURE)) {