Before, I could just type
git log
Now, I have to type:
git log | less
to get the same effect. I haven't (intentionally) changed any parameters. I've checked my global config: "~/.gitconfig" and my project Git config ".git/config" but I can't see anything that would cause this. All of the command parameters seem to be for opting out of this.
Furthermore, none of these work either:
git config --add --global core.pager less
git log
or
GIT_PAGER=less git log
or
PAGER=less git log
git log
to useless
every time, I'd like to be able to pipe it to other things, likegrep
. How do I disable this? – Strap