aboutsummaryrefslogtreecommitdiff
path: root/builtin/read-tree.c
diff options
context:
space:
mode:
authorMichael J Gruber <git@drmicha.warpmail.net>2011-02-15 14:09:12 +0100
committerJunio C Hamano <gitster@pobox.com>2011-02-15 11:53:10 -0800
commit23c6a803d3e6523ec20154e30ae8a51d2ff998ca (patch)
treefcbff76c12c32e555db569b28f484f12ffdd075d /builtin/read-tree.c
parent1d5006ab31373bc6f316ddb6c9357cb735332eb2 (diff)
downloadgit-23c6a803d3e6523ec20154e30ae8a51d2ff998ca.tar.gz
git-23c6a803d3e6523ec20154e30ae8a51d2ff998ca.tar.xz
Make <identifier> lowercase as per CodingGuidelines
*.c part for matches with '"[A-Z]+"'. Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/read-tree.c')
-rw-r--r--builtin/read-tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/read-tree.c b/builtin/read-tree.c
index 73c89ed15..93c92814c 100644
--- a/builtin/read-tree.c
+++ b/builtin/read-tree.c
@@ -104,8 +104,8 @@ int cmd_read_tree(int argc, const char **argv, const char *unused_prefix)
struct unpack_trees_options opts;
int prefix_set = 0;
const struct option read_tree_options[] = {
- { OPTION_CALLBACK, 0, "index-output", NULL, "FILE",
- "write resulting index to <FILE>",
+ { OPTION_CALLBACK, 0, "index-output", NULL, "file",
+ "write resulting index to <file>",
PARSE_OPT_NONEG, index_output_cb },
OPT_SET_INT(0, "empty", &read_empty,
"only empty the index", 1),