Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im new to Git and Terminal. This is pretty basic stuff, but how can i exit a listing mode generated by the git status command?

share|improve this question

3 Answers

I have to guess here, but git is probably running its output into your $PAGER program, likely less or more. In either case, typing q should get you out.

share|improve this answer
1  
The pager used by git is selected by core.pager configuration variable (if it is set), then GIT_PAGER enviroment variable, then PAGER environment variable, then less as fallback. – Jakub NarÄ™bski Nov 8 '09 at 14:49
1  
+1 Thanks for relieving my pain lol – Anthony Feb 18 at 13:15
:q

that's a less command, actually. It uses the same commands as vi.

share|improve this answer
If it's less, then no colon (:) is needed. You're thinking if vi! – Carl Smotricz Nov 8 '09 at 13:21
4  
yeah, just q works – R. Martinho Fernandes Nov 8 '09 at 13:23
both works so ..... – RageZ Nov 8 '09 at 13:25
sure, I don't get the downvote. – R. Martinho Fernandes Nov 8 '09 at 13:25
1  
they don't like me ... =) – RageZ Nov 8 '09 at 13:27
show 1 more comment

Type 'q' and it will do the job.

Whenever you are at the terminal and have a similar predicament keep in mind also to try and type 'quit', 'exit' as well as the abort key combination 'Ctrl + C'.

share|improve this answer
I was using 'Ctrl + Z' and ended up with a ton of unterminated git processes when I ran ps -ax. Did not know about q. – brokenindexfinger Jan 11 at 16:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.