1
0
mirror of https://github.com/git/git.git synced 2024-10-01 02:32:27 +02:00
git/git-log-script
Junio C Hamano ff84d327df Audit rev-parse users again.
Some callers to rev-parse were using the output selection flags
inconsistently.

Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-08-24 14:31:36 -07:00

5 lines
200 B
Bash
Executable File

#!/bin/sh
revs=$(git-rev-parse --revs-only --no-flags --default HEAD "$@") || exit
[ "$revs" ] || die "No HEAD ref"
git-rev-list --pretty $(git-rev-parse --default HEAD "$@") | LESS=-S ${PAGER:-less}