I've got Git for Windows setup (msysgit) and it was working fine for the last few days and today I've encountered an odd error.
When issuing a Git command in the Windows Command Prompt or in the Git Bash that comes bundled with msysgit, I get a strange '(END)' line appear and then I cannot issue any other comamnds.
At this point all I get are system beeps.
Any ideas?
Thanks, P.
Method 1: Re-open Command PromptIf the path was set correctly, you will be able to use Git commands without receiving the “git' is not recognized as an internal or external command” error.
If you are using the git cli directly, pressing q in the keyboard will also do the job for you. Show activity on this post. ctrl + c is the most used task killing command for command based working windows.
All you have to do is load Command Prompt (Load the Start menu, then click "Run", type cmd and hit enter), then you can use Git commands as normal.
Git want to show more than one screen of information to you, to do so it call the standard unix pager program less
. Just type q to return to the prompt when you no longer want to navigate in the output.
If you want to use git efficiently you should learn the basic unix tools. Even if git build and run on windows it's pretty much an alien software on the platform.
If you don't want less
just replace it with another pager in the configuration. If you don't want a pager at all just use cat
:
git config --global --add core.pager cat
Press q to exit the pager (which is less
in git by default).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With