Git symbolic links in Windows
Git symbolic links in Windows
Git symbolic links in Windows
Re: Git symbolic links in Windows
You can find the symlinks by looking for files that have a mode of `120000`, possibly with this command:
```
git ls-files -s | awk '/120000/{print $4}'
```
Once you replace the links, I would recommend marking them as unchanged with `git update-index --assume-unchanged`, rather than listing them in `.git/info/exclude`.
```
git ls-files -s | awk '/120000/{print $4}'
```
Once you replace the links, I would recommend marking them as unchanged with `git update-index --assume-unchanged`, rather than listing them in `.git/info/exclude`.