How do I exit the results of 'git diff' in Git Bash on windows?

GitDiffMsysgit

Git Problem Overview


I'm using Git Bash on Windows 7. When I run git diff, I see this:

However, I'm unable to get back to a regular prompt. Pressing Ctrl+C seems to work, but as soon as I start typing a command, it's covered up with (END) as in that image.

Git Solutions


Solution 1 - Git

I think pressing Q should work.

Solution 2 - Git

None of the above solutions worked for me on Windows 8

But the following command works fine

SHIFT + Q

Solution 3 - Git

Using WIN + Q worked for me. Just q alone gave me "command not found" and eventually it jumped back into the git diff insanity.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTravis NorthcuttView Question on Stackoverflow
Solution 1 - GitIgorView Answer on Stackoverflow
Solution 2 - GitLucasView Answer on Stackoverflow
Solution 3 - Gituser2093173View Answer on Stackoverflow