Add troubleshooting page, closes #137
parent
f13396664d
commit
b82d34edf8
1 changed files with 10 additions and 0 deletions
10
Troubleshooting.md
Normal file
10
Troubleshooting.md
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
# Troubleshooting
|
||||||
|
|
||||||
|
## Fix links not successfully setup in Git Bash with Git for Windows
|
||||||
|
Native Windows symlinks are only created on Windows Vista/2008 and later, and only on filesystems supporting reparse points like NTFS. In order to maintain backwards compatibility, users must explicitely requests creating them. This is done by setting the environment variable for MSYS to contain the string winsymlinks:native or winsymlinks:nativestrict. Without this setting, 'ln -s' may copy the file instead of making a link to it.
|
||||||
|
|
||||||
|
In order enable these symbolic links, run git bash as administrator, then:
|
||||||
|
|
||||||
|
export MSYS=winsymlinks:nativestrict
|
||||||
|
./install
|
||||||
|
|
Loading…
Reference in a new issue