每当我从github运行rails脚本/插件安装来安装使用git的插件时,它就会“挂起”。
$ script/plugin -v install http://github.com/ryanstout/blog_kit.git它“挂”了。-v提供了以下输出:
Plugins will be installed using http
git init
Initialized empty Git repository in /home/XXX/vendor/plugins/blog_kit/.git/
git pull --depth 1 http://github.com/ryanstout/blog_kit.git它就挂在那里。(“XXX”是我在这篇文章中编辑的)
当我用^C断开命令,运行git拉深1.手动时,它也会挂起。
git-remot 11710 ber 8u IPv4 182786 0ttttcyasmine.fritz.box:42324->github.com:www (CLOSE_WAIT) git -远程11710 ber 9u IPv4 182798 0t0 TCP yasmine.fritz.box:42325->github.com:www (CLOSE_WAIT) git 11712 ber 8u IPv4 182786 0t0 tt0 tcyasmine.fritz.box:42324->github.com:www (CLOSE_WAIT)
因此,看起来确实有一个连接,但是没有任何东西被拉进来。
有什么办法让我更深入地研究这个问题吗?我错过什么自传了吗?
发布于 2010-06-30 18:53:09
多亏了ewall,我找到了答案。
而不是:
脚本/插件http://github.com/ryanstout/blog_kit.git安装-v
使用
脚本/插件git://github.com/ryanstout/blog_kit.git安装-v
https://stackoverflow.com/questions/3151471
复制相似问题