Staging
v0.5.1
https://github.com/git/git
Revision 8b1f8d04c999421f8d2d8f248c82506390980a2c authored by Junio C Hamano on 05 October 2005, 22:41:49 UTC, committed by Junio C Hamano on 05 October 2005, 22:41:49 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 952f87a
Raw File
Tip revision: 8b1f8d04c999421f8d2d8f248c82506390980a2c authored by Junio C Hamano on 05 October 2005, 22:41:49 UTC
GIT 0.99.8b
Tip revision: 8b1f8d0
git-log.sh
#!/bin/sh
#
# Copyright (c) 2005 Linus Torvalds
#

# This one uses only subdirectory-aware commands, so no need to
# include sh-setup-script.

revs=$(git-rev-parse --revs-only --no-flags --default HEAD "$@") || exit
[ "$revs" ] || {
	echo >&2 "No HEAD ref"
	exit 1
}
git-rev-list --pretty $(git-rev-parse --default HEAD "$@") |
LESS=-S ${PAGER:-less}
back to top