diff options
author | Alex Henrie <alexhenrie24@gmail.com> | 2015-08-26 22:27:06 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-28 12:01:37 -0700 |
commit | 9476c2c39e1af1ebe00d061a852b9d56553d8d1f (patch) | |
tree | e600c7564e327556cef110162f7a5bdbe1fc5493 /builtin | |
parent | i18n: read-tree: mark parseopt strings for translation (diff) | |
download | tgif-9476c2c39e1af1ebe00d061a852b9d56553d8d1f.tar.xz |
read-tree: replace bracket set with parentheses to clarify usage
-u and -i can only be given if -m, --reset, or --prefix is given.
Without parentheses, it looks like -u and -i can be used no matter
what, and the second pair of brackets is confusing.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/read-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/read-tree.c b/builtin/read-tree.c index 042ac1b84f..70dc100b43 100644 --- a/builtin/read-tree.c +++ b/builtin/read-tree.c @@ -33,7 +33,7 @@ static int list_tree(unsigned char *sha1) } static const char * const read_tree_usage[] = { - N_("git read-tree [[-m [--trivial] [--aggressive] | --reset | --prefix=<prefix>] [-u [--exclude-per-directory=<gitignore>] | -i]] [--no-sparse-checkout] [--index-output=<file>] (--empty | <tree-ish1> [<tree-ish2> [<tree-ish3>]])"), + N_("git read-tree [(-m [--trivial] [--aggressive] | --reset | --prefix=<prefix>) [-u [--exclude-per-directory=<gitignore>] | -i]] [--no-sparse-checkout] [--index-output=<file>] (--empty | <tree-ish1> [<tree-ish2> [<tree-ish3>]])"), NULL }; |