I want to create symbolic link using a script shared by my team. The script works fine on Mac, but this line:
ln -s `pwd`/git-hooks/post-checkout .git/hooks
failed on my Windows machine, WSL complains that:
ln: failed to create symbolic link ‘.git/hooks/post-checkout’: Input/output error
How can I fix this?