builtin/*: update usage format
According to the guidelines in parse-options.h, we should not end in a full stop or start with a capital letter. Fix old error and usage messages to match this expectation. Signed-off-by: ZheNing Hu <adlternative@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
4ca7994b2a
commit
e73fe3dd02
@ -1205,32 +1205,32 @@ int cmd_fast_export(int argc, const char **argv, const char *prefix)
|
||||
N_("select handling of commit messages in an alternate encoding"),
|
||||
parse_opt_reencode_mode),
|
||||
OPT_STRING(0, "export-marks", &export_filename, N_("file"),
|
||||
N_("Dump marks to this file")),
|
||||
N_("dump marks to this file")),
|
||||
OPT_STRING(0, "import-marks", &import_filename, N_("file"),
|
||||
N_("Import marks from this file")),
|
||||
N_("import marks from this file")),
|
||||
OPT_STRING(0, "import-marks-if-exists",
|
||||
&import_filename_if_exists,
|
||||
N_("file"),
|
||||
N_("Import marks from this file if it exists")),
|
||||
N_("import marks from this file if it exists")),
|
||||
OPT_BOOL(0, "fake-missing-tagger", &fake_missing_tagger,
|
||||
N_("Fake a tagger when tags lack one")),
|
||||
N_("fake a tagger when tags lack one")),
|
||||
OPT_BOOL(0, "full-tree", &full_tree,
|
||||
N_("Output full tree for each commit")),
|
||||
N_("output full tree for each commit")),
|
||||
OPT_BOOL(0, "use-done-feature", &use_done_feature,
|
||||
N_("Use the done feature to terminate the stream")),
|
||||
OPT_BOOL(0, "no-data", &no_data, N_("Skip output of blob data")),
|
||||
N_("use the done feature to terminate the stream")),
|
||||
OPT_BOOL(0, "no-data", &no_data, N_("skip output of blob data")),
|
||||
OPT_STRING_LIST(0, "refspec", &refspecs_list, N_("refspec"),
|
||||
N_("Apply refspec to exported refs")),
|
||||
N_("apply refspec to exported refs")),
|
||||
OPT_BOOL(0, "anonymize", &anonymize, N_("anonymize output")),
|
||||
OPT_CALLBACK_F(0, "anonymize-map", &anonymized_seeds, N_("from:to"),
|
||||
N_("convert <from> to <to> in anonymized output"),
|
||||
PARSE_OPT_NONEG, parse_opt_anonymize_map),
|
||||
OPT_BOOL(0, "reference-excluded-parents",
|
||||
&reference_excluded_commits, N_("Reference parents which are not in fast-export stream by object id")),
|
||||
&reference_excluded_commits, N_("reference parents which are not in fast-export stream by object id")),
|
||||
OPT_BOOL(0, "show-original-ids", &show_original_ids,
|
||||
N_("Show original object ids of blobs/commits")),
|
||||
N_("show original object ids of blobs/commits")),
|
||||
OPT_BOOL(0, "mark-tags", &mark_tags,
|
||||
N_("Label tags with mark ids")),
|
||||
N_("label tags with mark ids")),
|
||||
|
||||
OPT_END()
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user