]> asedeno.scripts.mit.edu Git - git.git/commitdiff
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 4a348ed263ea654792f7d4aaf851be84766a9609..7772260cd30e8f9a849f2857db3f3fd40e630d4f 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}