我想将裸存储库\ Server \ LocationZ \ Z克隆到另一个服务器位置\ Server ... \ Y
cd '\\Server\...\Y'
git clone '\\Server\LocationZ\Z' 'myClone'
问题是它不起作用,我收到以下错误消息
fatal: update_ref failed for ref 'HEAD': cannot update ref 'refs/heads/master': trying to write ref 'refs/heads/master' with nonexistent object 2588da1d204d92886031cd0aa4aa88947eb7dd61
fatal: The remote end hung up unexpectedly
现在,如果我克隆到服务器上的另一个位置,它可以正常工作:
cd '\\Server\...\X'
git clone '\\Server\LocationZ\Z' 'myClone'
可能导致此问题的原因是什么?
我检查了读/写权限,看起来很好。两个位置的路径长度或多或少相等。两个位置都存储在同一台服务器上。