我有一个共享网络目录,其中包含git repositoiry对象
\\@ip\git\test-app
在refs/heads
中,我可以看到名为branche-test
的分支
所以我想使用git克隆此分支
所以我用这个命令
git clone --progress --branch branche-test -v "\\@ip\git\test-app"
此命令仍然被阻止,无法正常工作,并且没有错误消息,请问该错误是否可能是正确的访问问题?
答案 0 :(得分:0)
您的命令应在git bash控制台上运行。尝试测试文件路径是否正确?
git clone --progress --branch branche-test -v "//@ip/git/test-app"
答案 1 :(得分:0)
如果在Windows上,则应该为共享存储库分配一个驱动器号,例如M
。在git-bash中,您可以通过/m/git/test-app
访问远程存储库。
git clone --progress --branch branche-test -v /m/git/test-app