Add to usage and docs for git-add.sh
authorChris Shoemaker <c.shoemaker@cox.net>
Sat, 29 Oct 2005 21:46:41 +0000 (17:46 -0400)
committerJunio C Hamano <junkio@cox.net>
Mon, 31 Oct 2005 01:28:01 +0000 (17:28 -0800)
Signed-off-by: Chris Shoemaker <c.shoemaker@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/git-add.txt
git-add.sh

index 4a03b4c..3230029 100644 (file)
@@ -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>
index 4bf4128..b5fe46a 100755 (executable)
@@ -1,5 +1,9 @@
 #!/bin/sh
 
+usage() {
+    die "usage: git add [-n] [-v] <file>..."
+}
+
 show_only=
 verbose=
 while : ; do
@@ -10,6 +14,9 @@ while : ; do
     -v)
        verbose=--verbose
        ;;
+    -*)
+       usage
+       ;;
     *)
        break
        ;;