Cloning into 'project'...
bash: git-upload-pack: command not found
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
在上面两篇文章中,我们自己安装git(指定目录安装),搭建远程仓库。
然后在 "客户端" 也就是我们的本地,外网进行 git clone时,就出现了上面的错误。
简单一点理解,因为安装的git不是默认目录,所以 找不到。。
我们之前安装的目录是:/usr/local/git/
所以这时候,我们需要建立一个连接文件,让git能够找到
ln -s /usr/local/git/bin/git-upload-pack /usr/bin/git-upload-pack
这样之后,回到本地再次进行 git clone,就能成功了。