7

In Git bash i have run the following:

ln -s "//server/path/Resource/" test

When I check if it's worked:

ls -l

It appears as a folder rather than a symlink. I am using windows and trying to create a symbolic link to a network location. This is probably an easy fix but i just want a shortcut rather than copying a massive folder.

Michael Shopsin
  • 1,712
  • 2
  • 22
  • 37
TaxiMike
  • 139
  • 1
  • 7
  • There's some explanation & workarounds here: https://superuser.com/questions/550732/use-mklink-in-msys – AmeliaBR Jan 31 '19 at 00:32

1 Answers1

0

make sure your git config points symbolic links as true.

core.symlinks=false

make this as true as by default it is

user2636464
  • 587
  • 4
  • 14