我从DOS shell创建了一个链接(我必须以管理员身份运行DOS shell)
C:\Users\Rob> mklink /D MyRepo \\somewhere\MyRepo
接下来,来自MINGW(我使用Git For Windows)我得到了
$ ls
MyRepo@
接下来,如果我这样做
$ cd MyRepo
$ touch A.txt
我可以在Windows资源管理器中看到网络位置中的A.txt
文件。这意味着这种机制有效。
另一方面,它恰好发生了
$ git init --bare
fatal: unable to get current working directory: No error
任何提示?