diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2010-07-17 15:33:15 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-07-19 11:11:46 -0700 |
commit | f0e5a4b7f3db2d4e1ded9683817d1d1d3a2a220f (patch) | |
tree | 8f0b2885d6e42c712b4b2c0e0853dd5f4e4f88b5 /Documentation/git-add.txt | |
parent | 1f74574ba2d34fc9735e8113ed95def6accb6411 (diff) | |
download | git-f0e5a4b7f3db2d4e1ded9683817d1d1d3a2a220f.tar.gz |
git add: Add --ignore-missing to SYNOPSIS
All the git add options were listed in the synopsis until the
--ignore-missing option was added. Change that so that the git add
documentation now has the complete listing.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-add.txt')
-rw-r--r-- | Documentation/git-add.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt index bfea2c2d62..e22a62f065 100644 --- a/Documentation/git-add.txt +++ b/Documentation/git-add.txt @@ -10,7 +10,8 @@ SYNOPSIS [verse] 'git add' [-n] [-v] [--force | -f] [--interactive | -i] [--patch | -p] [--edit | -e] [--all | [--update | -u]] [--intent-to-add | -N] - [--refresh] [--ignore-errors] [--] [<filepattern>...] + [--refresh] [--ignore-errors] [--ignore-missing] [--] + [<filepattern>...] DESCRIPTION ----------- |