Staging
v0.5.1
swh:1:snp:c5feb7ee9221a3820c8879e85e8a18470c0b3afa
Raw File
Tip revision: d5bc7eecbbb0b9f6122708bf5cd62f78ebdaafd8 authored by Junio C Hamano on 25 September 2005, 07:36:26 UTC
GIT v0.99.7d
Tip revision: d5bc7ee
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