PlayN示例:git clone命令抛出错误:您是否在服务器上运行git update-server-info?

时间:2011-12-10 20:19:35

标签: git sample playn

我正在尝试按照PlayN的GettingStarted说明进行操作。

尝试克隆存储库时出错:

Macintosh: test dev $ git clone https://code.google.com/p/playn-samples    
Initialized empty Git repository in /home/dev/test/playn-samples/.git/
fatal: https://code.google.com/p/playn-samples/info/refs not found: did you run git update-server-info on the server?

这是git服务器上的问题,还是我需要做些什么才能让这个命令工作?


更新: 我能够通过将我的git客户端从1.6.5.2更新到1.7.7.3

来解决这个问题

1 个答案:

答案 0 :(得分:0)

我发现当你的配置文件配置错误.netrc时会发生这种情况。你有一个~/.netrc档案吗?如果是这样,请尝试将其重命名为其他内容并重新发出git clone命令。

如果可行,那么您应确保.netrc仅包含有效条目,如果其中包含code.google.com条目,请确保其中包含正确的Google代码密码。有效的.netrc条目的格式为:

machine HOSTNAME login USERNAME password PASSWORD

其中HOSTNAME,USERNAME和PASSWORD被替换为给定帐户的适当值。