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>
This commit is contained in:
committed by
Junio C Hamano
parent
1d5006ab31
commit
23c6a803d3
@ -49,7 +49,7 @@ static struct option builtin_fetch_options[] = {
|
||||
"fetch from all remotes"),
|
||||
OPT_BOOLEAN('a', "append", &append,
|
||||
"append to .git/FETCH_HEAD instead of overwriting"),
|
||||
OPT_STRING(0, "upload-pack", &upload_pack, "PATH",
|
||||
OPT_STRING(0, "upload-pack", &upload_pack, "path",
|
||||
"path to upload pack on remote end"),
|
||||
OPT__FORCE(&force, "force overwrite of local branch"),
|
||||
OPT_BOOLEAN('m', "multiple", &multiple,
|
||||
@ -69,9 +69,9 @@ static struct option builtin_fetch_options[] = {
|
||||
OPT_BOOLEAN('u', "update-head-ok", &update_head_ok,
|
||||
"allow updating of HEAD ref"),
|
||||
OPT_BOOLEAN(0, "progress", &progress, "force progress reporting"),
|
||||
OPT_STRING(0, "depth", &depth, "DEPTH",
|
||||
OPT_STRING(0, "depth", &depth, "depth",
|
||||
"deepen history of shallow clone"),
|
||||
{ OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, "DIR",
|
||||
{ OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, "dir",
|
||||
"prepend this to submodule path output", PARSE_OPT_HIDDEN },
|
||||
OPT_END()
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user