7

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!

Zach Young
  • 103
  • 4
coderdave
  • 237
  • 4
  • 8

2 Answers2

15

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

5

Piping only redirects stdout. If you want stderr as well then you need to redirect that to stdout first.

git config 2>&1 | less
Ignacio Vazquez-Abrams
  • 111,361
  • 10
  • 201
  • 247