0

我想在本地开发,然后用git提交到服务器。

所以我已经在我的电脑上安装了 git,现在我正在尝试使用 SourceTree 应用程序访问我的服务器上的项目。

我去了存储库设置并添加了网址,但是当我尝试获取时,我得到:

git -c diff.mnemonicprefix=false -c core.quotepath=false fetch proyectName
fatal: http://servername.com/ftp/proyectName/proyectName/info/refs not found: did you run git update-server-info on the server?
Completed with errors, see above

当然我错过了一些明显的东西!

4

1 回答 1

0

在错误中说您需要在服务器上执行:

git update-server-info

请参阅此问题以获取更多信息:git update-server-info 做什么?

于 2013-01-16T11:46:55.877 回答