在 Windows 服务器上设置 Git
我有一台 Mac(运行 OS X Lion),当我创建 XCode 项目时,可以选择在同一台计算机上创建本地 git 存储库,但是,在我创建了一个测试 XCode 项目(使用它的本地 git 存储库),我希望 XCode 不是从 GitHub 而是从 Windows 服务器(位于我们的本地网络,IP 地址:10.3.3.12)推送/拉取更改。 我如何在此服务器上设置 Git?
ps 我找到了很多教程,但它们听起来已经过时且难以理解,例如这个。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以设置一个配置了智能 HTTP 的 Apache 服务器来为您的 Git 存储库提供服务 - http://progit.org/ 2010/03/04/smart-http.html
我发现智能 HTTP 是设置 Windows Git 服务器的最简单方法,可以在 Mac OS X 上使用。
You can setup an Apache server with Smart HTTP configured to serve your Git repo - http://progit.org/2010/03/04/smart-http.html
Smart HTTP is what I have found to be the easiest way for setting a Windows Git server, to be used from Mac OS X.
以下是在 Windows 上设置 Git 服务器的最新指南:
http://devlicio.us/blogs/krzysztof_kozmic/archive/2011/08/20/simple-guide-to-running-git-server-on-windows-in-local-network-kind- of.aspx
Here's a more up-to-date guide for setting up a Git server on Windows:
http://devlicio.us/blogs/krzysztof_kozmic/archive/2011/08/20/simple-guide-to-running-git-server-on-windows-in-local-network-kind-of.aspx
设置服务器后,可以更轻松地克隆存储库,然后在该存储库中创建 xcode 项目。如果您在克隆的同一文件夹中启动项目,XCode 将正确使用存储库。
After you setup the server, it is easier to clone the repository, and then create the xcode project in that repository. XCode will use the repository correctly if you start the project in the same folder that you cloned.