I\'ve recently started using Git and am having trouble with just one thing. How can I track directories without tracking their contents?
For example the site I\'m wo
Best answerd I've found is to include a .gitignore file in your upload folder with this content
# Ignore everything in this directory * # Except this file !.gitignore
Here you have How can I add an empty directory to a Git repository?