I've set up a NFS share on my Linux server, with this line in /etc/exports
:
/vol/int0 192.168.0.0/24(rw,sync,no_subtree_check)
However, this share primarily contains git repositories, or more specifically, git-annexes. That is, the repositories primarily contains relative symlinks to a location inside the .git/annex
directory. Now, this works fine to access on a Linux machine but on Windows the symlinks doesn't show up at all (With the official NFS client). If I navigate into the .git/annex
folder though, the files are still there, it's just the symlinks that are missing.
Is there any way of configuring Windows to actually see the symlinks, or is it simply not possible (yet)?
(Also, I'm aware that git-annex
can run in a "direct" mode, without the symlinks but I would like to avoid that if at all possible.)