我想使用缓存加速在我的网络中克隆一些git-repos。 我设置了repo并运行git-daemon。
现在我可以致电
git clone git://my_ip/my_repo
但失败的是
git clone --reference git://my_ip/my_repo git://github.com/my_repo.git
与
fatal: path 'git://my_ip/my_repo' does not exist
有没有办法为--reference
使用远程存储库?
或者我是否需要本地参考?
答案 0 :(得分:2)
--reference
仅与本地存储库有关。请参阅https://git-scm.com/docs/git-clone#git-clone---reference-if-ableltrepositorygt上的文档:
如果参考存储库位于本地计算机上,则自动设置.git / objects / info / alternates以从参考存储库中获取对象。