Staging
v0.5.1
https://github.com/git/git
Revision e1a0c8b1483b38d32d3870408e03a6c1b340aa15 authored by Junio C Hamano on 02 March 2006, 01:06:12 UTC, committed by Junio C Hamano on 02 March 2006, 01:06:12 UTC
* lt/fix-apply:
  git-am: --whitespace=x option.
  git-apply: war on whitespace -- finishing touches.
  git-apply --whitespace=nowarn
  apply --whitespace: configuration option.
  apply: squelch excessive errors and --whitespace=error-all
  apply --whitespace fixes and enhancements.
  The war on trailing whitespace
2 parent s 9e7c73d + 12cbbdc
Raw File
Tip revision: e1a0c8b1483b38d32d3870408e03a6c1b340aa15 authored by Junio C Hamano on 02 March 2006, 01:06:12 UTC
Merge branch 'lt/fix-apply' into maint
Tip revision: e1a0c8b
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