I do all of my terminal work in emacs and would prefer to use the much richer tools for moving around the output than "less". Worse, any time an applications pages inside of emacs, it is horribly annoying because it is a dumb terminal.
While I can swap things like "git help rm" for "M-x man git-rm", I would prefer to just disable all paging of everything in git. Then I don't have to hunt for the right incantations.
git config --global core.pager cat
Doesn't seem to do the trick.
git config --global man.viewer "man -P cat"
causes problems because "man -P cat" isn't a valid executable.
How can I get git to just dump its output?