diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-19 09:07:19 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-19 09:07:19 -0700 |
commit | ce7d9c9c3cea73ab81bf38df93927abb580669ec (patch) | |
tree | deeec81d1a2fa3bf4fd849ffb2c8768e5f63ce11 | |
parent | 5c97558c9a813a0a775c438a79cfc438def00c22 (diff) | |
download | git-ce7d9c9c3cea73ab81bf38df93927abb580669ec.tar.gz git-ce7d9c9c3cea73ab81bf38df93927abb580669ec.tar.xz |
git-whatchanged: use 'less -S' on the output to make it more user friendly
-rwxr-xr-x | git-whatchanged | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-whatchanged b/git-whatchanged index 542067d13..d80abcc98 100755 --- a/git-whatchanged +++ b/git-whatchanged @@ -1,2 +1,2 @@ #!/bin/sh -git-rev-list HEAD | git-diff-tree --stdin -v -r "$@" +git-rev-list HEAD | git-diff-tree --stdin -v -r "$@" | less -S |