diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-21 00:01:00 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-21 00:01:00 -0800 |
commit | c2f3bf071ee90b01f2d629921bb04c4f798f02fa (patch) | |
tree | 08ffe5b40e062d596deee47f3869278f4661a858 /git-log.sh | |
parent | GIT 0.99.9n aka 1.0rc6 (diff) | |
parent | Make "git-send-pack" less verbose by default (diff) | |
download | tgif-c2f3bf071ee90b01f2d629921bb04c4f798f02fa.tar.xz |
GIT 1.0.0
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-log.sh')
-rwxr-xr-x | git-log.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/git-log.sh b/git-log.sh index b36c4e9534..c2ea71cf14 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=<n>] [<since>..<limit>] [--pretty=<format>] [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} |