git-merge-index documentation: clarify synopsis
The options following <merge-program> are not -a, --, or <file>..., but either -a, or -- <file>..., while -- is optional. Signed-off-by: Gerrit Pape <pape@smarden.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
0fb7fc751d
commit
c7fae5fc68
@ -8,7 +8,7 @@ git-merge-index - Run a merge for files needing merging
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
'git-merge-index' [-o] [-q] <merge-program> (-a | \-- | <file>\*)
|
'git-merge-index' [-o] [-q] <merge-program> (-a | [--] <file>\*)
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
-----------
|
-----------
|
||||||
|
@ -91,7 +91,7 @@ int main(int argc, char **argv)
|
|||||||
signal(SIGCHLD, SIG_DFL);
|
signal(SIGCHLD, SIG_DFL);
|
||||||
|
|
||||||
if (argc < 3)
|
if (argc < 3)
|
||||||
usage("git-merge-index [-o] [-q] <merge-program> (-a | <filename>*)");
|
usage("git-merge-index [-o] [-q] <merge-program> (-a | [--] <filename>*)");
|
||||||
|
|
||||||
setup_git_directory();
|
setup_git_directory();
|
||||||
read_cache();
|
read_cache();
|
||||||
|
Reference in New Issue
Block a user