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 に答える