I have been working on a Django project, and I decided that it needed some version control. I have an SVN server running on another machine, and I wanted to import that code into my SVN repository. I am developing on Ubuntu and my SVN server is a remote OS X machine.
I went into my Django project on my development machine, ~/django_projects/myproject, and ran the following command: svn import svn+ssh://[email protected]/path/to/svn/repo. The result was a whole bunch of files that were added.
Then I modified a couple of files and tried to do a check in: svn ci.
That command gave the following error message: svn: 'path/to/svn/repo' is not a working copy.
What did I do wrong? How do I get my stuff checked into SVN so that I can do proper version control?