summaryrefslogtreecommitdiffstats
path: root/git-add.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-04-26 17:06:04 -0700
committerJunio C Hamano <gitster@pobox.com>2013-04-26 17:06:04 -0700
commitf26c77e7e7f61955cbe9c7c9c82aed632d0c13a3 (patch)
treef7b8cb1da9b0056b5ea29c0069b248e3adb56537 /git-add.txt
parentac002b631c16db5b744b6bfdc5d5599cf1cf254b (diff)
downloadgit-htmldocs-f26c77e7e7f61955cbe9c7c9c82aed632d0c13a3.tar.gz
Autogenerated HTML docs for v1.8.3-rc0
Diffstat (limited to 'git-add.txt')
-rw-r--r--git-add.txt10
1 files changed, 6 insertions, 4 deletions
diff --git a/git-add.txt b/git-add.txt
index 5c501a299..48754cbc6 100644
--- a/git-add.txt
+++ b/git-add.txt
@@ -9,9 +9,9 @@ SYNOPSIS
--------
[verse]
'git add' [-n] [-v] [--force | -f] [--interactive | -i] [--patch | -p]
- [--edit | -e] [--[no-]all | [--update | -u]] [--intent-to-add | -N]
- [--refresh] [--ignore-errors] [--ignore-missing] [--]
- [<pathspec>...]
+ [--edit | -e] [--[no-]all | --[no-]ignore-removal | [--update | -u]]
+ [--intent-to-add | -N] [--refresh] [--ignore-errors] [--ignore-missing]
+ [--] [<pathspec>...]
DESCRIPTION
-----------
@@ -111,6 +111,7 @@ of Git, hence the form without <pathspec> should not be used.
-A::
--all::
+--no-ignore-removal::
Update the index not only where the working tree has a file
matching <pathspec> but also where the index already has an
entry. This adds, modifies, and removes index entries to
@@ -122,6 +123,7 @@ and its subdirectories. This default will change in a future version
of Git, hence the form without <pathspec> should not be used.
--no-all::
+--ignore-removal::
Update the index by adding new files that are unknown to the
index and files modified in the working tree, but ignore
files that have been removed from the working tree. This
@@ -130,7 +132,7 @@ of Git, hence the form without <pathspec> should not be used.
This option is primarily to help the current users of Git, whose
"git add <pathspec>..." ignores removed files. In future versions
of Git, "git add <pathspec>..." will be a synonym to "git add -A
-<pathspec>..." and "git add --no-all <pathspec>..." will behave like
+<pathspec>..." and "git add --ignore-removal <pathspec>..." will behave like
today's "git add <pathspec>...", ignoring removed files.
-N::