在 Windows 服务器上设置 Git

发布于 2024-12-31 23:28:03 字数 322 浏览 1 评论 0 原文

我有一台 Mac(运行 OS X Lion),当我创建 XCode 项目时,可以选择在同一台计算机上创建本地 git 存储库,但是,在我创建了一个测试 XCode 项目(使用它的本地 git 存储库),我希望 XCode 不是从 GitHub 而是从 Windows 服务器(位于我们的本地网络,IP 地址:10.3.3.12)推送/拉取更改。 我如何在此服务器上设置 Git?

ps 我找到了很多教程,但它们听起来已经过时且难以理解,例如这个

I have a mac (runs OS X Lion), when I create XCode projects, there is an option to create a local git repository on the same machine, however, after I created a test XCode project (with its local git repository), I want XCode to push/pull changes not from GitHub, but from a Windows server (located at our local network, IP address: 10.3.3.12).
how can I set Git on this server ?

p.s. I have found many tutorials, but they sound to be outdated and hard to follow, like this one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

月依秋水 2025-01-07 23:28:03

您可以设置一个配置了智能 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.

倥絔 2025-01-07 23:28:03

设置服务器后,可以更轻松地克隆存储库,然后在该存储库中创建 xcode 项目。如果您在克隆的同一文件夹中启动项目,XCode 将正确使用存储库。

git clone username@yourlocal-repos:repo.git

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.

git clone username@yourlocal-repos:repo.git
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文