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

GitTerminalGit Bash

Git Problem Overview


I have had up to 8 git bash terminals running at the same time before.

Currently I have only 2 up.

I have not seen this error before and I am not understanding what is causing it.

Any help would be appreciated!

Picture attached:

enter image description here

Git Solutions


Solution 1 - Git

Found a similar issue and solution in google groups

> I opened a windows command prompt and ran the command > > $ tasklist > > It looks as though the ssh connections I had made in my git bash shells weren't being closed when those windows were closed and were hanging the available git bash shell windows. > > This may be a dangerous solution but from the windows command prompt I ran > > $ taskkill /F /IM ssh.exe > > Everything appears to be working again after this. It may not have directly been an issue of orphan processes, but this worked for at least for me.

Additional note: you can also kill other processes, for example like:

$ taskkill /F /IM vim.exe

Solution 2 - Git

In my case, it was related with the use of VS code. Previously I have opened VS code using a git bash terminal and executing

code .

then closing the terminal.

The problem is solved by closing all the VS code windows opened.

When you have any editor or IDE configure to open a terminal as git bash, then when the IDE/IDE is running, the git bash will spin up bash from "C:\Windows\System32\bash.exe" and any other attempt to open bash from a separate window is likely to crash.

The best solution is to kill the IDE/Editor bash and open from a new window or continue from the IDE/Editor command.

Solution 3 - Git

I see the problem on windows in git bash when I kill my git bash console without using exit. I found killing ssh-agent.exe task from windows task manager to fix the problem.

Solution 4 - Git

I address this with a workaround:

  1. Close the Git Bash window.
  2. Open Task manager.
  3. Find the 'Git for Windows' process.
  4. Kill it.
  5. Open Git Bash.

It should be ok now.

Solution 5 - Git

To make life easier (this problems happens quite often) create a file called fixbash.bat in home directory and paste this:

taskkill /F /IM ssh-agent.exe

When problem occurs just open cmd and type fixbash.bat to fix a problem.

Or

Just paste the taskkill command into your cmd if you don't want to create a script.

Solution 6 - Git

Open task manager and kill process with name bash, this worked for me.

Solution 7 - Git

This happens when you exit git bash without terminating existing process. Just try and kill those processes that you started from git bash. I was running node process inside git bash, so I killed all node processes Steps to kill

  1. Open Task Manager
  2. Goto Details Tab
  3. Look for node.exe(you look for you processes)
  4. Kill it each and every node process
  5. Open Git Bash again

Solution 8 - Git

Restart your machine.

(The other answers did not work for me. (I didn't try reinstalling. Restarting is probably faster.))

Solution 9 - Git

For me (or anyone running protractor, which may spin up a standalone Selenium/WebDriver server), I needed to taskkill the specific webdriver which was running my tests.

So just a different argument: or your chromedriver version may vary

taskkill /f /im chromedriver_2.34.exe

Note your driver may vary: IEDriverServer*.*.*.exe vs chromedriver_*.**exe

Your driver may version may vary:chromedriver_2.34.exe vs chromedriver_2.33.exe

This problem got worse after protractor quit without closing the automated /test-driven browser, (due to a separate issue I don't yet understand.) Naturally many chromedriver tasks remain running, that's why kill them.

Solution 10 - Git

finally figured out what was causing this.

if we use code like this (explicitly or implicitly) i.e. in .bashrc file

eval $(ssh-agent -s)
ssh-add ~/.ssh/id_rsa

it spawns a new process.

if you don't exit it and just close the window, that process is still running. so each new bash opened just keeps adding new ones w/out disposing old ones.

when done with a bash window, simply hit ctrl+d or type exit to kill the agent process, and you should not run out of forks.

Solution 11 - Git

In my Case I need to kill Git bash in Windows. So opened Command Prompt and ran below command

$ tasklist

It will list down all running tasks, then need to kill bash.exe task using below command

$ taskkill /F /IM bash.exe 

Solution 12 - Git

Seems to be an issue with the processes launched from the git bash indeed, like @mamacdon suggested in his comment on the top answer by @Scott Newson.

For me, the issue appeared if I launched a vscode from the bash with code, and if this instance of vscode launched an integrated git terminal while the original bash was still running.

Doesn't matter whether that terminal was launched at the start or later, as long as it was while the original bash was still running.

Didn't happen when the bash was closed before the integrated terminal was opened. Didn't differentiate between exit and closing bash via windows. Didn't happen with another older bash window still running.

The way to deal with it was for me to close the terminals in vscode with exit or 'Kill Terminal' (be careful not to mix that up with 'close pane'), or of course, closing vscode itself.

If you get this error try to remember what you launched from the bash and kill it. If the other answers worked for you, it's probably just that these are the things launched by your bash or launched by processes you launched from the bash and they somehow were getting a child of your original bash.

Solution 13 - Git

If you are using Visual Studio Code and you can't find ssh-agent.exe or can't taskkill it and after opening Git Bash you get that error, just go to your VSCode open Terminal>New Terminal and just press the trashbin icon the (Kill Terminal). e.g (1:bash) if you got multiple then just kill them all and you should be good.

Solution 14 - Git

I tried to kill all my git terminals in task manager solves the problem. This works for me too. good luck.

Solution 15 - Git

Open your Task manager, search "sh" procces and kill them. Good luck

Solution 16 - Git

i found that killing msys2 terminal in task manager solves the problem

Solution 17 - Git

On a more recent version of git for windows, the process to kill in task manager was "GitExtensions.exe". Killed that and the terminals restarted with no issues.

Solution 18 - Git

Please find the ssh-agent process in the Task Manager window. After you stop or kill the ssh-agent process the error will disappear.

Solution 19 - Git

Open Task manager, find bash.exe process and kill it. Helped in my case.

Solution 20 - Git

In my case I had visual studio code running and closing it resolved the issue.

Solution 21 - Git

Windows 10 this worked for me:

  1. open cmd as administrator

  2. type:

    taskkill /f /im git-bash.exe



  1. If there was an Error: The process "ssh-agent.exe" not found. then:

type:

tasklist

4) Find and kill every process with words like "bash" or "git" (This may be a dangerous solution, but once you will find the process name, next time you will know.)

taskkill /f /im ***.exe

Solution 22 - Git

Im my case, the solution was to close Visual Studio Code -where I had console running too without noticing-

After closing it all back to normal. Hope this helps someone.

Solution 23 - Git

In my case, I needed to kill sh.exe taskkill /F /IM sh.exe

Solution 24 - Git

For windows, in task-manager kill sh.exe.

Solution 25 - Git

In my case the problem was the file [git_install_dir]/etc/nsswitch.conf

I previously followed the instructions given here: https://cygwin.com/faq.html#faq.using.startup-slow. But this caused the "Could not fork" error instead. My wrong nsswitch.conf file was:

passwd: files
group: files

So I restored the file and problem solved. Now my [git_install_dir]/etc/nsswitch.conf is:

passwd: files db
group: files # db
db_enum: cache builtin
db_home: env windows cygwin desc
db_shell: env windows # cygwin desc
db_gecos: env # cygwin desc

Solution 26 - Git

In my case, I was running jupyter-notebook from Git Bash and closed the terminal without closing the notebook. When I closed all running git bash terminals and tried to open new terminal, this gave me the error:

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

Solution

taskkill /F /IM jupyter-notebook.exe

After that, I was able to run commands in git bash terminal.

Solution 27 - Git

Reinstalled git, it is now working fine.

Solution 28 - Git

In system bash type:

ps

Kill any bad looking process:

kill -9 <ID>

Worked for me.

Solution 29 - Git

In my case, I had a stray abd.exe that was still open in task manager. Killing it fixed the issue.

Solution 30 - Git

if you have another terminal session of VS code opened,just close it and try again, it will work fine.

Solution 31 - Git

This problem started for me when I edited my bash_profile and restarted git bash.

The problem was resolved after I closed my terminal session in VS Code. Everything worked as expected after that.

Solution 32 - Git

Just Restart Your Machine, While Restarting our machine this issue is solved try it.

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
QuestionA. PetrizzaView Question on Stackoverflow
Solution 1 - GitScott NewsonView Answer on Stackoverflow
Solution 2 - GitFederico CacciaView Answer on Stackoverflow
Solution 3 - GitJoe zView Answer on Stackoverflow
Solution 4 - GitReturn_Of_The_ArchonsView Answer on Stackoverflow
Solution 5 - GitklimatView Answer on Stackoverflow
Solution 6 - GitHariView Answer on Stackoverflow
Solution 7 - GitIshanView Answer on Stackoverflow
Solution 8 - GitandydaviesView Answer on Stackoverflow
Solution 9 - GitThe Red PeaView Answer on Stackoverflow
Solution 10 - GitSonic SoulView Answer on Stackoverflow
Solution 11 - GitVatsal ShahView Answer on Stackoverflow
Solution 12 - GitSam96View Answer on Stackoverflow
Solution 13 - GitJustinView Answer on Stackoverflow
Solution 14 - GitRahul NaiknawareView Answer on Stackoverflow
Solution 15 - GitGrace NikoleView Answer on Stackoverflow
Solution 16 - Gituser2293554View Answer on Stackoverflow
Solution 17 - GitJoe ShelbyView Answer on Stackoverflow
Solution 18 - GitSohan JangidView Answer on Stackoverflow
Solution 19 - GitBahtiView Answer on Stackoverflow
Solution 20 - GitmhandView Answer on Stackoverflow
Solution 21 - GitRadim ŠafránView Answer on Stackoverflow
Solution 22 - GitYala HerzlinView Answer on Stackoverflow
Solution 23 - GitSharonView Answer on Stackoverflow
Solution 24 - GitGürcan KavakçıView Answer on Stackoverflow
Solution 25 - GitpiedramaniaView Answer on Stackoverflow
Solution 26 - Gitusermay14View Answer on Stackoverflow
Solution 27 - GitGeorgeView Answer on Stackoverflow
Solution 28 - GitDamian CzapiewskiView Answer on Stackoverflow
Solution 29 - Gitcag8fView Answer on Stackoverflow
Solution 30 - GitSalim NadjiView Answer on Stackoverflow
Solution 31 - GitEddie KnightView Answer on Stackoverflow
Solution 32 - GitAkshay SalviView Answer on Stackoverflow