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!

link|improve this question
feedback

migrated from stackoverflow.com Sep 27 '10 at 17:41

This question came from our site for professional and enthusiast programmers.

2 Answers

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

link|improve this answer
feedback

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

git config 2>&1 | less
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.