Git 错误:git clone 'https://github.com/JangoSteve/remotipart.git' "/home/ubuntu/.bundler/cache/git/remotipart-46f8bf276d5ffef4f196efc85f86445ee22983a2" --bare --no-hardlinks
目录 /home/ubuntu/Desktop/1_files/imageeditorservicespro 中的命令失败。
问问题
528 次
2 回答
1
您的 git 显然没有 http/https 克隆所需的 curl 绑定。您可以将 gemfile 更改为git://github.com/JangoSteve/remotipart.git
显式使用,而不仅仅是github.com/JangoSteve/remotipart.git
( git:// 部分很重要)
或者,如果您想要一个可以处理 http 的 git 版本,请尝试通过 aptitude 或从源代码使用 curl 重新安装 git:
通过 apt:
sudo apt-get remove git-core
apt-get install curl libcurl4-openssl-dev # or whatever your curl dev package is
sudo apt-get install git-core
从来源:
sudo apt-get remove git-core
sudo apt-get build-dep git-core
# download and extract the git sources from https://github.com/git/git/tags
# cd into the source directory
./configure --with-curl --with-expat
make
sudo make install
于 2012-06-27T11:40:36.770 回答
0
如果你想克隆它,试试这个
git clone git://github.com/JangoSteve/remotipart.git
于 2012-06-27T10:32:17.970 回答