When I was using Git Bash (Git For Windows) if a command (like git diff
) had a short output (I\'m guessing smaller than the terminal\'s height) it would just pr
This is not a Git thing, it's a property of your pager. Git doesn't know how long the output is going to be so it will always output using your pager.
Configure your pager to quit if your output is less than one full screen. With less that's -F
. You can set the LESS
environment variable with your default switches.