git clone报错 fatal: unable to fork

 1. 问题

git clone [email protected]:url-kaist/Quatro.git
Cloning into 'Quatro'...
fatal: unable to fork

 在使用Docker clone 代码时报错

 2. 解决方法

查看是否安装openssh,

用以下命令查看系统是否已安装OpenSSH,如果有openssh-client和openssh-server说明系统已经安装OpenSSH。

dpkg --list | grep ssh

 


如果没有安装则安装

sudo apt-get install ssh

git clone报错 fatal: unable to fork_第1张图片

你可能感兴趣的:(BUG,git)