diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-07-19 22:34:16 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-19 23:08:58 -0700 |
commit | da98053aa699b2c462e35b777f4817fc46f111eb (patch) | |
tree | 0f3b7583b4192e9eeb7edd975def2646338dd323 /Documentation/git-add.txt | |
parent | 340ce9e25f40ef2fead9fcc027844c66737c85dd (diff) | |
download | git-da98053aa699b2c462e35b777f4817fc46f111eb.tar.gz |
git-add --all: documentation
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-add.txt')
-rw-r--r-- | Documentation/git-add.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt index 3558905a92..2b6d6c8654 100644 --- a/Documentation/git-add.txt +++ b/Documentation/git-add.txt @@ -9,7 +9,7 @@ SYNOPSIS -------- [verse] 'git add' [-n] [-v] [--force | -f] [--interactive | -i] [--patch | -p] - [--update | -u] [--refresh] [--ignore-errors] [--] + [--all | [--update | -u]] [--refresh] [--ignore-errors] [--] <filepattern>... DESCRIPTION @@ -86,6 +86,12 @@ OPTIONS command line. If no paths are specified, all tracked files in the current directory and its subdirectories are updated. +-A:: +--all:: + Update files that git already knows about (same as '\--update') + and add all untracked files that are not ignored by '.gitignore' + mechanism. + --refresh:: Don't add the file(s), but only refresh their stat() information in the index. |