So I have a ruby on rails application that I have created on my local computer. I have a remote repository that I've created. Now how do I check it in for the first time? I have never created my own svn project before, so I don't know how to do it. I've only made commits to projects that I've worked on.
Solution:
cd [my project dir]
svn import -m "First Check-in" svn://[SubversionRunningMachine]/[ProjectName]/trunk
This will check in the project. Now you have to check out the project.
svn co svn://[SubversionRunningMachine]/[ProjectName]/trunk NewProjectName