diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-12 20:35:04 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-12 20:35:04 -0700 |
commit | a7fa68c5f942706fce5636b9136d1b229e089190 (patch) | |
tree | ee95e7b5f5f789dd9cd438919b77703b63f68b0d | |
parent | git-diff-tree: fix output with just "--pretty". (diff) | |
download | tgif-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-x | git-whatchanged | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-whatchanged b/git-whatchanged index 4a348ed263..7772260cd3 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} |