diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-09-19 13:51:45 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-19 13:51:45 -0700 |
commit | 9f3d73e8cb2e9ae1123c218cc1ecff3032c82286 (patch) | |
tree | 42d644f82aa73385a4bdf170faed16f527c4cc45 /builtin/cat-file.c | |
parent | 03039390090084fff2f7d515f475b03697791f8d (diff) | |
parent | a1c8044662947caeefc9d8f5c31dc77548d81cb4 (diff) | |
download | git-9f3d73e8cb2e9ae1123c218cc1ecff3032c82286.tar.gz git-9f3d73e8cb2e9ae1123c218cc1ecff3032c82286.tar.xz |
Merge branch 'ah/misc-message-fixes' into maint
Message cleanup.
* ah/misc-message-fixes:
unpack-trees: do not capitalize "working"
git-merge-octopus: do not capitalize "octopus"
git-rebase--interactive: fix English grammar
cat-file: put spaces around pipes in usage string
am: put spaces around pipe in usage string
Diffstat (limited to 'builtin/cat-file.c')
-rw-r--r-- | builtin/cat-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/cat-file.c b/builtin/cat-file.c index 2dfe6265f..560f6c2cc 100644 --- a/builtin/cat-file.c +++ b/builtin/cat-file.c @@ -440,7 +440,7 @@ static int batch_objects(struct batch_options *opt) } static const char * const cat_file_usage[] = { - N_("git cat-file (-t [--allow-unknown-type]|-s [--allow-unknown-type]|-e|-p|<type>|--textconv) <object>"), + N_("git cat-file (-t [--allow-unknown-type] | -s [--allow-unknown-type] | -e | -p | <type> | --textconv) <object>"), N_("git cat-file (--batch | --batch-check) [--follow-symlinks]"), NULL }; |