aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-12 20:35:04 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-12 20:35:04 -0700
commita7fa68c5f942706fce5636b9136d1b229e089190 (patch)
treeee95e7b5f5f789dd9cd438919b77703b63f68b0d
parentba88e54b1a39aa700cc2f8da402e6167d124329d (diff)
downloadgit-a7fa68c5f942706fce5636b9136d1b229e089190.tar.gz
git-a7fa68c5f942706fce5636b9136d1b229e089190.tar.xz
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.
-rwxr-xr-xgit-whatchanged2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-whatchanged b/git-whatchanged
index 4a348ed26..7772260cd 100755
--- a/git-whatchanged
+++ b/git-whatchanged
@@ -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}