to find broken symlinks in a git repo:
find . -xtype l | xargs git ls-files --
git ls-files
is needed to show only files tracked by git
to find broken symlinks in a git repo:
find . -xtype l | xargs git ls-files --
git ls-files
is needed to show only files tracked by git