Skip to content

Commit

Permalink
Merge branch 'fixes'
Browse files Browse the repository at this point in the history
  • Loading branch information
Junio C Hamano committed Sep 23, 2005
2 parents d154dcc + 9f92f15 commit 7fe2fc7
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion git-diff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,21 @@ files=$(git-rev-parse --no-revs --no-flags --sq "$@")

: ${flags:="'-M' '-p'"}

# I often say 'git diff --cached -p' and get scolded by git-diff-files, but
# obviously I mean 'git diff --cached -p HEAD' in that case.
case "$rev" in
'')
case " $flags " in
*" '--cached' "*)
rev='HEAD '
;;
esac
esac

case "$rev" in
?*' '?*' '?*)
die "I don't understand"
echo >&2 "I don't understand"
exit 1
;;
?*' '^?*)
begin=$(expr "$rev" : '.*^.\([0-9a-f]*\).*') &&
Expand Down

0 comments on commit 7fe2fc7

Please sign in to comment.