1
0
mirror of https://github.com/git/git.git synced 2024-09-28 18:32:37 +02:00
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}