When I try to create a symbolic link from the Git Bash shell, it fails every time all the time:
ln -s /c/Users/bzisad0/Work testlink
Output:
ln: creating symbolic link `testlink' to `/c/Users/bzisad0/Work': Permission denied
The only thing it does, besides giving the error message, is create an empty directory named (in this case) testlink
.
I don't see any problem with the ln
executable. For instance, it is owned by me and marked as executable:
which ln
ls -hal /bin/ln
Output:
/bin/ln
-rwxr-xr-x 1 BZISAD0 Administ 71k Sep 5 11:55 /bin/ln
I also own the current directory (~
, which is /c/Users/bzisad0
):
ls -dhal .
Output:
drwxr-xr-x 115 BZISAD0 Administ 40k Sep 5 12:23 .
I have administrative rights, and I've tried opening the Git Bash shell with "Run as Administrator", but that makes no difference.
I've tried opening the Windows properties for ln.exe
and setting the Privilege Level to "Run this program as an administrator" but that doesn't help.
I've gone into the Security → Advanced properties in Windows and made myself (rather than the Administrators group) the owner, but that doesn't fix anything either.
I'm at a loss. I don't know whether this error message is ultimately coming from ln
, from Bash, or from Windows, or how I could possibly lack the permission. How can I get to the bottom of this?
It is possible, albeit extremely awkward, to create a symbolic link in MSysGit.
First, we need to make sure we are on Windows. Here's an example function to check that:
Now, we can't do
cmd /C
, because MSysGit will fornicate with this argument and turn it intoC:
. Also, don't be tempted to use/K
; it only works if you don't have aK:
drive.So while it will replace this value on program arguments, it won't on heredocs. We can use this to our advantage:
Also: note that I included
/D
because I'm interested in directory symlinks only; Windows has that distinction. With plenty of effort, you could write aln() { ... }
function that wraps the Windows API and serves as a complete drop-in solution, but that's... left as an exercise for the reader.As a thank-you for the accepted answer, here's a more comprehensive function.
Also note a few things:
Bonus function: remove a link.