git-whatchanged: make default output format be pretty.

If you want the raw stuff, just do

	git-whatchanged --pretty=raw

and it wil act like it used to.
This commit is contained in:
Linus Torvalds 2005-06-12 20:35:04 -07:00
parent ba88e54b1a
commit a7fa68c5f9

View File

@ -1,2 +1,2 @@
#!/bin/sh
git-rev-list HEAD | git-diff-tree --stdin -v -r "$@" | LESS="$LESS -S" ${PAGER:-less}
git-rev-list HEAD | git-diff-tree --stdin --pretty -r "$@" | LESS="$LESS -S" ${PAGER:-less}