SVN

Friday, January 21, 2011


To import already existing code to SVN repository:

1. Create a new SVN repository

svnadmin create path-to-repository

2. import to this newly created repository
svn import -m "INITIAL REVISION" repository-name svn+ssh://username@host/path-to-repository

Posted by Posted by WL at 11:00 AM
Categories:

0 comments  

CVS

To create a new repository:

Create the directory and then use

cvs -d directory-name init

To import already existing code into this new repository:

Go under the directory where the code is located
cvs -d repository-path import -m "Initial Imported Revision" module-name vendor-tag Release-tag

Posted by Posted by WL at 10:57 AM
Categories:

0 comments  

 
>