Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: e1d04f8aad59397cbd55e72bf8a1bd75606f5350 authored by Junio C Hamano on 03 October 2005, 23:26:51 UTC
GIT 0.99.8a
Tip revision: e1d04f8
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