<t>You can find the symlinks by looking for files that have a mode of 120000, possibly with this command:<br/>
<br/>
git ls-files -s | awk '/120000/{print $4}'<br/>
<br/>
```<br/>
<br/>
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`.</t>