summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 92811b5)
raw | patch | inline | side by side (parent: 92811b5)
author | Fredrik Kuivinen <freku045@student.liu.se> | |
Thu, 15 Dec 2005 22:48:26 +0000 (23:48 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 16 Dec 2005 00:02:21 +0000 (16:02 -0800) |
Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-log.sh | patch | blob | history |
diff --git a/git-log.sh b/git-log.sh
index b36c4e95343aeefd436ac5b4a9d80a85ddc6ec56..c2ea71cf14a6a96c2f9124fb57425e682f735995 100755 (executable)
--- a/git-log.sh
+++ b/git-log.sh
# 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}