diff options
author | c.shoemaker@cox.net <c.shoemaker@cox.net> | 2005-10-29 00:16:12 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-28 22:21:29 -0700 |
commit | 0363ecf6414e75d4423814ba930f67edaef91683 (patch) | |
tree | 145bc819301613fd783d97db40e34967631ca44b | |
parent | f9362de96131c323a00ce5e135dd76f7134c7f01 (diff) | |
download | git-0363ecf6414e75d4423814ba930f67edaef91683.tar.gz git-0363ecf6414e75d4423814ba930f67edaef91683.tar.xz |
update usage string for git-commit.sh
Signed-off-by: Chris Shoemaker <c.shoemaker at cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | git-commit.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-commit.sh b/git-commit.sh index 96a884f3b..10651d87d 100755 --- a/git-commit.sh +++ b/git-commit.sh @@ -6,7 +6,7 @@ . git-sh-setup || die "Not a git archive" usage () { - die 'git commit [-a] [-v | --no-verify] [-m <message>] [-F <logfile>] [(-C|-c) <commit>] [<path>...]' + die 'git commit [-a] [-s] [-v | --no-verify] [-m <message> | -F <logfile> | (-C|-c) <commit>] [-e] [<path>...]' } all= logfile= use_commit= no_edit= log_given= log_message= verify=t signoff= |