From: Fredrik Kuivinen Date: Thu, 15 Dec 2005 22:48:26 +0000 (+0100) Subject: git-log: Add usage string X-Git-Tag: v1.0.0^2~36 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=2a58a9a92ea275c11a83269425677c95c532cc18;p=git.git git-log: Add usage string Signed-off-by: Fredrik Kuivinen Signed-off-by: Junio C Hamano --- diff --git a/git-log.sh b/git-log.sh index b36c4e95..c2ea71cf 100755 --- a/git-log.sh +++ b/git-log.sh @@ -3,13 +3,13 @@ # Copyright (c) 2005 Linus Torvalds # -# This one uses only subdirectory-aware commands, so no need to -# include sh-setup-script. +USAGE='[--max-count=] [..] [--pretty=] [git-rev-list options]' +SUBDIRECTORY_OK='Yes' +. git-sh-setup revs=$(git-rev-parse --revs-only --no-flags --default HEAD "$@") || exit [ "$revs" ] || { - echo >&2 "No HEAD ref" - exit 1 + die "No HEAD ref" } git-rev-list --pretty $(git-rev-parse --default HEAD "$@") | LESS=-S ${PAGER:-less}