diff options
author | Chris Shoemaker <c.shoemaker@cox.net> | 2005-10-29 17:46:41 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-30 17:28:01 -0800 |
commit | 918db541e0e833b695ee45ee6cf563d018096860 (patch) | |
tree | 7392afaa6a348bef15f5b04544765b79b9685397 /Documentation/git-add.txt | |
parent | 14470c0de3d5a4388960f59ea96038206bacd888 (diff) | |
download | git-918db541e0e833b695ee45ee6cf563d018096860.tar.gz |
Add to usage and docs for git-add.sh
Signed-off-by: Chris Shoemaker <c.shoemaker@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-add.txt')
-rw-r--r-- | Documentation/git-add.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt index 4a03b4cfc6..32300297d6 100644 --- a/Documentation/git-add.txt +++ b/Documentation/git-add.txt @@ -7,7 +7,7 @@ git-add - Add files to the cache. SYNOPSIS -------- -'git-add' <file>... +'git-add' [-n] [-v] <file>... DESCRIPTION ----------- @@ -19,6 +19,13 @@ OPTIONS <file>...:: Files to add to the cache. +-n:: + Don't actually add the file(s), just show if they exist. + +-v:: + Be verbose. + + Author ------ Written by Linus Torvalds <torvalds@osdl.org> |