Very often (every time really) after I use the command git log
my terminal becomes unresponsive to further input, this is on OSX. Is there a command that I don't know about that will make the terminal active again instead of just quitting the terminal and starting over?
Asked
Active
Viewed 760 times
2

lampShade
- 4,361
- 8
- 34
- 50
2 Answers
2
You are inside a program that displays the log without scrolling, most likely less
, which can be exited by pressing the q
key.

Simon Richter
- 28,572
- 1
- 42
- 64
-
@lampShade: and if that is the case, `d` will scroll down and `b` will scroll up. – chelmertz May 14 '11 at 22:07