私は小さなDrupalサイトで作業しています。ローカルのWindowsボックスからHostGator(Linux)のリモート共有ホスティングアカウントにプッシュしてプッシュしようとしています。私は私のマシンにgit bashをインストールし、Git Bashのパスワードなしログインを設定しました。それはうまくいくようです。ここでGit Pull and Clone from HostGator
は私のコマンドです:
git clone "ssh://[email protected]/~/public_html/.git"
はここで完全な応答です:
Cloning into public_html...
error: git upload-pack: git-pack-objects died with error.
remote: Counting objects: 3330, done.fatal: git upload-pack: aborting due to possible repository corruption on the remote side.
remote: fatal: unable to create thread: Resource temporarily unavailable
remote: aborting due to possible repository corruption on the remote side.
fatal: early EOF
fatal: index-pack failed
は、ここで私が試したものです:
ssh domain.com
Last login: Mon Jan 23 14:38:07 2012 from xxxx
[[email protected]]$ cd public_html
[[email protected]]$ git fsck
[[email protected]]$
私も地元を削除しようとしたとリモートのgit repos、別のgit initを実行して、すべてを新しくコミットします。私はまだ私のマシンにレポを複製しようとしているときに同じエラーが発生します。
リモートサイトからクローン(またはプル)できないのはなぜですか?この問題を解決するにはどうすればよいですか?
ありがとうvpatil!私はこれらのスレッドを掘るのに苦労しているが、それは私の問題だとは思っていない。私はスタック交換のどこかに私の答えを見つけました。私はそれを下に掲示しています。 – Rustavore