The pager less doesn't clear the screen as it should do when i use git.

I use less all the time and it usually doesn't leave output in the terminal after quit but when less gets executed via git it leaves the output in the terminal. I'm 100% sure git uses less on my system.

What is wrong with git and how do i fix it? pager = less in ~/.gitconfig doesn't help. $PAGER is also set to less.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The solution is to set the variable LESS. Git defaults to less FRSX.

export LESS=R
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.