Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se> Signed-off-by: Junio C Hamano <junkio@cox.net>
		
			
				
	
	
		
			16 lines
		
	
	
		
			372 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 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}
 |