X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-cat-file.c;h=3fba6b9e743545868368a0e554466fca3814316a;hb=1f80c2afb0d826567a9a5a1c3ce76c28883e0e96;hp=880e75af5e1951689a417aa47e64f99a20d46ae6;hpb=87fb597d4e3643210e1967d1e3035f28f5b019e5;p=git.git diff --git a/builtin-cat-file.c b/builtin-cat-file.c index 880e75af5..3fba6b9e7 100644 --- a/builtin-cat-file.c +++ b/builtin-cat-file.c @@ -137,11 +137,11 @@ static int cat_one_file(int opt, const char *exp_type, const char *obj_name) break; default: - die("git-cat-file: unknown option: %s\n", exp_type); + die("git cat-file: unknown option: %s\n", exp_type); } if (!buf) - die("git-cat-file %s: bad file", obj_name); + die("git cat-file %s: bad file", obj_name); write_or_die(1, buf, size); return 0; @@ -202,8 +202,8 @@ static int batch_objects(int print_contents) } static const char * const cat_file_usage[] = { - "git-cat-file [-t|-s|-e|-p|] ", - "git-cat-file [--batch|--batch-check] < ", + "git cat-file [-t|-s|-e|-p|] ", + "git cat-file [--batch|--batch-check] < ", NULL };