‘git’ in love
Yep i kind of have a special relationship with git. We have a special thing between us. And as we get to know each other I am falling more and more into it’s embrace. Git, gets me, my deserve for refuge of my code, to come back to it, to have a safe space for my little creations i put together.
So my latest finding is a combo of git and symbolic links within mac os. I needed to expand a git repository to include a plugin I created for a wordpress theme, using the simplest approach possible.
The solution, symlink with a simple ‘git add’
mv /original/directory /existing-repo/new/directory ln -s /existing-repo/new/directory /original/ git add ./directory #this is done in your existing-repo directory


















