git-whatchanged: make default output format be pretty.
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Mon, 13 Jun 2005 03:35:04 +0000 (20:35 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Mon, 13 Jun 2005 03:35:04 +0000 (20:35 -0700)
If you want the raw stuff, just do

git-whatchanged --pretty=raw

and it wil act like it used to.

git-whatchanged

index 4a348ed..7772260 100755 (executable)
@@ -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}