Monday, July 9, 2018

Resolve Git bash Error: Could not fork child process: There are no available terminals (-1)


This can be a result of the GIt bash not been terminated properly in most of the cases node.exe is the culprit.
The solution would be to run the below command in cmd. taskkill /F /IM node.exe

No comments:

Post a Comment

.htaccess display error pages on http errors

In your htaccess file add the below lines and save to show error pages on Http errors (404, 403 etc) ErrorDocument 403 /errors/404.html ...