Error: waitpid for fetch-pack failed: no child processes

I get this error when trying to clone any repository.

Can't find much help on this from google.

C:\wamp64\www>git clone https://github.com/codeg8/laravel-crud-generator.git
Cloning into 'laravel-crud-generator'...
remote: Counting objects: 50, done.
remote: Total 50 (delta 0), reused 0 (delta 0), pack-reused 50
Unpacking objects: 100% (50/50), done.
error: waitpid for fetch-pack failed: No child processes
+4
source share
4 answers

Try to run the Git application as an administrator (right-click-> Run as administrator) if its Windows. It worked for me.

+5
source

This was a problem with the version of Git installed on my system. I used an older version of Git.

If someone is facing the same problem, try updating your Git installation to the latest version. This solved my problem.

0
source

Launch Git Bash as an administrator and do the cloning directly. I had the same problem and the above solution worked for me.

0
source

I also get the same error, your error is resolved.

-3
source

Source: https://habr.com/ru/post/1688449/


All Articles