diff options
author | Michael J Gruber <git@drmicha.warpmail.net> | 2011-02-15 14:09:12 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-02-15 11:53:10 -0800 |
commit | 23c6a803d3e6523ec20154e30ae8a51d2ff998ca (patch) | |
tree | fcbff76c12c32e555db569b28f484f12ffdd075d /builtin/fast-export.c | |
parent | 1d5006ab31373bc6f316ddb6c9357cb735332eb2 (diff) | |
download | git-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/fast-export.c')
-rw-r--r-- | builtin/fast-export.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/fast-export.c b/builtin/fast-export.c index c8fd46b87..b18fc85c4 100644 --- a/builtin/fast-export.c +++ b/builtin/fast-export.c @@ -619,9 +619,9 @@ int cmd_fast_export(int argc, const char **argv, const char *prefix) OPT_CALLBACK(0, "tag-of-filtered-object", &tag_of_filtered_mode, "mode", "select handling of tags that tag filtered objects", parse_opt_tag_of_filtered_mode), - OPT_STRING(0, "export-marks", &export_filename, "FILE", + OPT_STRING(0, "export-marks", &export_filename, "file", "Dump marks to this file"), - OPT_STRING(0, "import-marks", &import_filename, "FILE", + OPT_STRING(0, "import-marks", &import_filename, "file", "Import marks from this file"), OPT_BOOLEAN(0, "fake-missing-tagger", &fake_missing_tagger, "Fake a tagger when tags lack one"), |