Feb
19
How You Can Import Existing Project Catalog Into SVN Repository
You can import an existing project directory (with contents) into an SVn repository, and use the current location as your version controlled working copy.
Here is how to do it:
Suppose that your non-versioned project sources are in /home/user/aproject, and your repository is ready at http://server/repos.
First, create an empty directory somewhere outside of your project tree, say, /tmp/empty. Import that empty directory in your subversion repository.
cd /tmp/empty
svn import . http://server/repos/aproject
Then, go into your existing non-versioned
How You Can Import Existing Project Catalog Into SVN Repository
Comments
Comments are closed.