我不能让这个工作.
原文链接:https://www.f2er.com/windows/370331.html我已经克隆了一个具有虚拟文件(名为src)的存储库:/ path / src.
在Windows上,我创建了一个符号链接:mklink -d / path / src / otherplace / src(但是我当然不得不先删除这个虚拟的src文件).
在我的.gitignore和.git / info / exclude中都有
/path/src/ /path/src path/src/ path/src
我试过了
git ls-files -s | gawk '/120000/{print $4}' git update-index path/src/ --assume-unchanged
但我还是得到:
error: readlink("path/src"): Function not implemented error: unable to index file path/src fatal: updating files Failed
我已经尝试了所有these other suggestions.甚至this doesn’t work.
有任何想法吗?