Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git Bash on Windows 10 ignores Ctrl + C

I encountered strange issue with git bash after starting using Windows 10.

Sometimes Ctrl+C (and Ctrl+X) doesn't terminate running command on git bash But I can't found any dependency which circumstances related to such bug

What could I do to avoid such issue or to break running command when ctrl+c doesn't help?

like image 761
Limmy Avatar asked Jan 10 '19 10:01

Limmy


1 Answers

The same happened to me when using:

C:\Program Files\Git\bin\sh.exe --login -i

But it was NOT present with:

C:\Program Files\Git\usr\bin\sh.exe --login -i

There does not seem to be any difference in behavior between the sh.exe in a folder and the bash.exe in a particular folder. Namely, bin\bash.exe behaves the same as bin\sh.exe, and usr\bin\bash.exe behaves the same as usr\bin\sh.exe

like image 84
pcampana Avatar answered Sep 29 '22 04:09

pcampana