任何人都可以帮我解决这个问题

时间:2012-06-27 10:30:51

标签: ruby-on-rails git bundler

Git错误:目录/ home / ubuntu / Desktop / 1_files / imageeditorservicespro中的命令git clone 'https://github.com/JangoSteve/remotipart.git' "/home/ubuntu/.bundler/cache/git/remotipart-46f8bf276d5ffef4f196efc85f86445ee22983a2" --bare --no-hardlinks失败。

2 个答案:

答案 0 :(得分:1)

你的git显然没有http / https克隆所需的curl绑定。 您可以更改gem文件以明确使用git://github.com/JangoSteve/remotipart.git而不仅仅github.com/JangoSteve/remotipart.git(git://部分很重要)

或者,如果你想要一个可以处理http的git版本,请尝试通过aptitude或源代码重新安装git和curl:

通过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

答案 1 :(得分:0)

如果要克隆它,请尝试此操作

 git clone git://github.com/JangoSteve/remotipart.git