我在 OS X Server 上创建了一个名为 myTestRepo 的存储库。对于 HTTPS 访问,我允许登录用户读写。
当我尝试在 Xcode 中添加此存储库时,出现错误。
在存储库地址中,如果我输入
ssh://iMac/git/myTestRepo.git
我收到以下错误
Could not read from remote repository.
如果我进入
https://iMac/git/myTestRepo.git
我收到以下错误
fatal: unable to access 'https://iMac/git/myTestRepo.git/': Could not resolve host:iMac
我做错了什么?
Best Answer-推荐答案 strong>
这可能是您本地网络中的 DNS 问题:
尝试用托管 repo 的计算机的 IP 地址替换“iMac”:
ifconfig |grep inet
(在终端中)将打印出您的本地 IP(例如 192.168.18.15)。
如果这没有帮助,请尝试 ping IP/计算机名称 (iMac) 以查看您是否能够连接到计算机:
ping iMac
ping 192.168.18.15
我还找到了一个关于如何设置 git Mac OSX 服务器的好教程。 http://www.tomdalling.com/blog/software-processes/how-to-set-up-a-secure-git-server-at-home-osx/
注意端口转发部分,你的端口转发正确吗?
关于ios - 无法添加托管在 OS X Server 上的 Git 存储库,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/29438920/
|