mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
2a58a9a92e
Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se> Signed-off-by: Junio C Hamano <junkio@cox.net>
15 lines
372 B
Bash
Executable file
15 lines
372 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2005 Linus Torvalds
|
|
#
|
|
|
|
USAGE='[--max-count=<n>] [<since>..<limit>] [--pretty=<format>] [git-rev-list options]'
|
|
SUBDIRECTORY_OK='Yes'
|
|
. git-sh-setup
|
|
|
|
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}
|