如何远程克隆Windows Storage Server 2008上的Git存储库?


4

我在家中运行了一个运行Windows Storage Server 2008 R2 Essentials的Western Digital Sentinel。我有几个Git存储库用于我自己的个人项目,并且在推送和拉动我的本地网络时没有任何问题。我希望能够从任何地方远程访问这些存储库。我能够登录并远程访问存储库中的文件夹和文件,但我无法使用相同的地址克隆它们。在最终失败之前,它会挂起很长时间:

git.exe clone   --progress -v  "https://myIpAddressHere/Remote/fs/files.aspx?path=%5C%5Cmydevicename%5Cmyreposfolder%5Cmyrepo.git" "D:\repo"

Cloning into 'D:\repo'...
error: Failed connect to myIpAddress:443; No error while accessing https://myIpAddress/Remote/fs/files.aspx?path=%5C%5Cmydevicename%5Cmyreposfolder%5Cmyrepo.git/info/refs
fatal: HTTP request failed

git did not exit cleanly (exit code 128)

我不太了解网络或网络开发,我对如何使用Git(使用TortoiseGit)只有基本的了解。我很难找到这个特定问题的搜索结果,也很难解释这个问题的一般范围的通用教程。我可以采取哪些故障排除步骤来查找和解决问题?

我正在使用TortoiseGit 1.7.13.0和Git版本1.7.10.mysysgit.1。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.