↧
Answer by dgc for Why is less being run unnecessarily by git?
There are some great answers here for tuning less's behavior, but since my graybeard fingers are accustomed to typing |more when I want it, and since I'm still more in tune with mercurial than with...
View ArticleAnswer by QIS for Why is less being run unnecessarily by git?
You can set the following:git config --global core.pager 'less -FRX'This will ensure that less willExit if the entire file can be displayed on the first screen (F)Output the raw control characters for...
View ArticleWhy is less being run unnecessarily by git?
When I run git branch (from bash or csh), it automagically pipes the output through less. However, with only a few branches in the repository this is beyond unnecessary, it is annoying, as the branch...
View Article