git/git-whatchanged
Linus Torvalds c8265ac096 git-whatchanged: allow other pagers
(but still try to use '-S' if using less)
2005-05-21 09:44:16 -07:00

3 lines
96 B
Bash
Executable file

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