Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-13 07:35:04 +0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-13 07:35:04 +0400
commita7fa68c5f942706fce5636b9136d1b229e089190 (patch)
treeee95e7b5f5f789dd9cd438919b77703b63f68b0d /git-whatchanged
parentba88e54b1a39aa700cc2f8da402e6167d124329d (diff)
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.
Diffstat (limited to 'git-whatchanged')
-rwxr-xr-xgit-whatchanged2
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}