mirror of
https://github.com/git/git.git
synced 2024-11-06 01:03:02 +01:00
6e7722e6f8
It used 'die' without including git-sh-setup-script; since everything it uses are subdirectory-aware, instead of including the script to force it to be run from the top, use echo & exit. Signed-off-by: Junio C Hamano <junkio@cox.net>
15 lines
351 B
Bash
Executable file
15 lines
351 B
Bash
Executable file
#!/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}
|