Staging
v0.5.1
https://github.com/git/git
Revision 990f856a62a24bfd56bac1f5e4581381369e4ede authored by Junio C Hamano on 23 September 2005, 04:53:33 UTC, committed by Junio C Hamano on 23 September 2005, 04:53:33 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent d6179f5
Raw File
Tip revision: 990f856a62a24bfd56bac1f5e4581381369e4ede authored by Junio C Hamano on 23 September 2005, 04:53:33 UTC
GIT 0.99.7b
Tip revision: 990f856
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