How I found symbolic links for gitignore with find and cut
I was cleaning up a directory of old files for addition to git, and I came across a bunch of symlinks to a completely different codebase. In this particular case it was a wordpress blog that had a series of its files linked into the webroot of the site, that existed in an entirely different directory. I didn't want these files in the git repo.
Finding all the symlink files is easy enough.
cd /path/to/root
The find command gives us an easy way to get all symlink files:
find . -type l
But that's just a start -- we have to get these into the .gitignore file. Continue reading "How I found symbolic links for gitignore with find and cut"
Finding all the symlink files is easy enough.
cd /path/to/root
The find command gives us an easy way to get all symlink files:
find . -type l
But that's just a start -- we have to get these into the .gitignore file. Continue reading "How I found symbolic links for gitignore with find and cut"