I am using Git Shell (the module for PowerShell) on Windows. It’s the one that got installed when I installed Git for Windows. When I run a command that results in a lot of text such as git log I get a page of results and then a “:” at the bottom of the screen. I guess it’s a continuation prompt because I press ENTER and get another screen of data. I can’t usually recover to a normal prompt after this happens though. I get the text (END) at the bottom of the shell and it looks like it’s masking the first few characters of whatever command I try to type and it even seems to act a little sporadic. I can’t seem to figure it out. Any ideas?
I am using Git Shell (the module for PowerShell) on Windows. It’s the one
Share
Several of the git commands use a pager to allow you to view one screen full of information at a time. The one that come with git is usually
less(more info). You can visit the link for common commands, but as you’ve found the most important isqto quit to get back to the command prompt. The next most useful one I’ve found is space to move to the next screen full.You can change the pager used if you like in the git config file’s
core.pagerfield.