Pipe a program into less

bashlesspipestderrstdout

I'm taking the dive into setting up and learning git and at the same time learning bash. I'm trying to do something simple as view the help section of

$ git config

unfortunately, when I type that the output of the help goes off the screen. Doing some googling I found less to be the program I want to use to scroll.

I tried

$ git config | less

with no success. Any ideas? Thanks!

Best Answer

Git is probably writing its output into standard error stream instead of standard output stream because command parameters are not correct. Please read about Unix standard streams here.

To fix the problem you have to redirect the error stream into output stream like this:

git config 2>&1 | less