git-whatchanged: allow other pagers

(but still try to use '-S' if using less)
This commit is contained in:
Linus Torvalds 2005-05-21 09:44:16 -07:00
parent ca3ebdf5b2
commit c8265ac096

View file

@ -1,2 +1,2 @@
#!/bin/sh
git-rev-list HEAD | git-diff-tree --stdin -v -r "$@" | less -S
git-rev-list HEAD | git-diff-tree --stdin -v -r "$@" | LESS="$LESS -S" ${PAGER:-less}