format-patch: pretty-print timestamp correctly.
[gitweb.git] / git-add.sh
index 4bf41281d5554f9b1da103b0360eebc411a435eb..611f152daca6fd4ca7a9eab57a9294a26a7924ae 100755 (executable)
@@ -1,5 +1,9 @@
 #!/bin/sh
 
+USAGE='[-n] [-v] <file>...'
+SUBDIRECTORY_OK='Yes'
+. git-sh-setup
+
 show_only=
 verbose=
 while : ; do
@@ -10,6 +14,13 @@ while : ; do
     -v)
        verbose=--verbose
        ;;
+    --)
+       shift
+       break
+       ;;
+    -*)
+       usage
+       ;;
     *)
        break
        ;;
@@ -17,8 +28,6 @@ while : ; do
   shift
 done
 
-GIT_DIR=$(git-rev-parse --git-dir) || exit
-
 if test -f "$GIT_DIR/info/exclude"
 then
        git-ls-files -z \