How to start an SVN project from the command line?

后端 未结 3 885
悲哀的现实
悲哀的现实 2021-01-30 09:04

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 hav

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-30 09:26

    There are actually two ways to do this. One is through the use of import which doesn't put your active code base under version control. The other method is to just create an empty project in the repository and then check it out directly into the code base. Then just do an add and an a commit:

    svn mkdir /newProject
    svn checkout /newProject /path/to/codebase
    svn add /path/to/codebase/*
    svn commit /path/to/codebase -m "adding initial codebase"
    

    There is a good tutorial on how to create a new project here: http://web.archive.org/web/20110316170621/http://www.duchnik.com/tutorials/vc/svn-command-reference

提交回复
热议问题