Revision 55275b3812af3fe84516f176e589100232aef4f5 authored by Junio C Hamano on 11 April 2006, 18:52:01 UTC, committed by Junio C Hamano on 11 April 2006, 18:52:01 UTC
* jc/withraw:
  Separate the raw diff and patch with a newline
  Document --patch-with-raw
2 parent s 8fcd421 + 90c1b08
Raw File
git-log.sh
#!/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}
back to top