From: Eric Lesh <eclesh@xxxxxxxx> Date: Thu, 29 Mar 2007 04:38:49 -0700 Subject: [PATCH] guilt: Add -h option to show man pages git-sh-setup steals the -h|--h* argument and prints the usage message of the command that calls it, which in this case is guilt. Rather than print the unhelpful guilt usage message, call guilt-help on the given command instead. Signed-off-by: Eric Lesh <eclesh@xxxxxxxx> --- guilt | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/guilt b/guilt index b1ab5a1..88f5a1b 100755 --- a/guilt +++ b/guilt @@ -9,6 +9,14 @@ GUILT_NAME="Space Rock" # we change directories ourselves SUBDIRECTORY_OK=1 +case $1 in + -h|--h|--he|--hel|--help) + dir=`dirname $0` + shift + exec "$dir/guilt-help" "$@" + exit +esac + . git-sh-setup function guilt_commands -- 1.5.1-rc1.GIT - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html