Issue
I have a symlinked directory within my repository, which links to files elsewhere on the filesystem. For whatever reason, the symlink breaks every now and then, and it turns into a regular empty folder. So I deleted the empty folder, and recreated the symlink with ln -s ../../ ext
, which appears to have worked as I can browse that folder and see the contents. But when I run git status
, it appears all the files that should be visible within the ext
folder are missing. How can I make git see that they are there again, within the symlinked directory?
This is on Ubuntu 18 by the way.
Solution
just dont put a repo in a repo, its not worth it
Answered By - stackers Answer Checked By - Mildred Charles (WPSolving Admin)