From c7fae5fc68974eec9b60750424946a67cc143ad2 Mon Sep 17 00:00:00 2001 From: Gerrit Pape Date: Fri, 22 Feb 2008 08:55:29 +0000 Subject: [PATCH] git-merge-index documentation: clarify synopsis The options following are not -a, --, or ..., but either -a, or -- ..., while -- is optional. Signed-off-by: Gerrit Pape Signed-off-by: Junio C Hamano --- Documentation/git-merge-index.txt | 2 +- merge-index.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/git-merge-index.txt b/Documentation/git-merge-index.txt index 5d816d0d8b..19ee017aed 100644 --- a/Documentation/git-merge-index.txt +++ b/Documentation/git-merge-index.txt @@ -8,7 +8,7 @@ git-merge-index - Run a merge for files needing merging SYNOPSIS -------- -'git-merge-index' [-o] [-q] (-a | \-- | \*) +'git-merge-index' [-o] [-q] (-a | [--] \*) DESCRIPTION ----------- diff --git a/merge-index.c b/merge-index.c index bbb700b54e..7491c56ad2 100644 --- a/merge-index.c +++ b/merge-index.c @@ -91,7 +91,7 @@ int main(int argc, char **argv) signal(SIGCHLD, SIG_DFL); if (argc < 3) - usage("git-merge-index [-o] [-q] (-a | *)"); + usage("git-merge-index [-o] [-q] (-a | [--] *)"); setup_git_directory(); read_cache(); -- 2.11.4.GIT