Merge branch 'ah/pack-objects-usage-strings'
authorJunio C Hamano <gitster@pobox.com>
Tue, 1 Sep 2015 23:31:12 +0000 (16:31 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 1 Sep 2015 23:31:12 +0000 (16:31 -0700)
Usage string fix.

* ah/pack-objects-usage-strings:
pack-objects: place angle brackets around placeholders in usage strings

builtin/pack-objects.c
index 62cc16ddc24320273bba4732c4402e8f6221ab95..1c63f8f28c7d925ee5647f190d236e64fc6e05a2 100644 (file)
@@ -25,8 +25,8 @@
 #include "argv-array.h"
 
 static const char *pack_usage[] = {
-       N_("git pack-objects --stdout [options...] [< ref-list | < object-list]"),
-       N_("git pack-objects [options...] base-name [< ref-list | < object-list]"),
+       N_("git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"),
+       N_("git pack-objects [<options>...] <base-name> [< <ref-list> | < <object-list>]"),
        NULL
 };