I have a version controlled project located at ~/webapps/django/myproject
and media files located at ~/webapps/static
. I want to add the static folder to the same repo so that when it's checked out, it will be in the project folder, preferably with the name "media".
I've tried going into the webapps folder and doing svn import static https://myrepo
but it imports all the stuff inside static, but excludes the "static" folder itself, making a big mess in my project folder.
If you're wondering, I'm doing this because there's a bit of a discrepancy in the way my development server and production server are set up.