我想使用TFS作为版本控制来开发我们的一个iPad应用程序。我跟随this article来配置我的Xcode项目。
在做了博客中提到的所有步骤后,我能够对整个项目进行checkin和checkout。但我无法将更改的文件推送回TFS服务器。更重要的是,我在执行git push命令时遇到以下错误
fatal:
https://username@mydomain:8080/tfsprod/info/refs?service=git-receive-pack
not found: did you run git update-server-info on the server?任何帮助都将不胜感激。
发布于 2014-12-05 09:17:27
只是将评论移动到一个答案中。
您不能使用git push。您需要使用git tf checkin或git tf checkin --deep (如果您希望每次git提交时都签入)。
git tf checkin is here参考文档
https://stackoverflow.com/questions/15783378
复制相似问题