我们在linux nfs磁盘中有一个git repo。 .git/objects/info/alternates
引用该位置的对象子目录:/p/(some path)/objects
我有一个通过samba映射到克隆位置的Windows网络驱动器。为了能够进行git操作,我还通过samba映射了回购位置:
p:\objects
或通过mingw64 git shell:
/p/objects
当我将/p/objects
添加到.git/objects/info/alternates
文件并执行git操作时,我得到:
$ git status
error: object directory /p/objects does not exist; check
.git/objects/info/alternates
fatal: unable to read tree 53f8ee42dc3a570c8a9d6dd926ffc11a10b4b848**
我尝试了p:\objects
,但也没有用。
有任何提示吗?
谢谢!