git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Add usage statement for git-reset.sh
@ 2005-10-29  4:16 c.shoemaker
  0 siblings, 0 replies; only message in thread
From: c.shoemaker @ 2005-10-29  4:16 UTC (permalink / raw)


Signed-off-by: Chris Shoemaker <c.shoemaker at cox.net>

---

 git-reset.sh |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

6bce396534f26c05d43bfb42d057465c4e564030
diff --git a/git-reset.sh b/git-reset.sh
--- a/git-reset.sh
+++ b/git-reset.sh
@@ -1,6 +1,10 @@
 #!/bin/sh
 . git-sh-setup || die "Not a git archive"
 
+usage () {
+	die 'Usage: git reset [--mixed] [--soft] [--hard]  [<commit-ish>]'
+}
+
 tmp=/var/tmp/reset.$$
 trap 'rm -f $tmp-*' 0 1 2 3 15
 
@@ -10,6 +14,8 @@ case "$1" in
 	reset_type="$1"
 	shift
 	;;
+-*)
+        usage ;;
 esac
 
 rev=$(git-rev-parse --verify --default HEAD "$@") || exit

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-10-29  4:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-29  4:16 [PATCH] Add usage statement for git-reset.sh c.shoemaker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).