Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>If this is to be a new Subversion repository, then it is trivial: just create a fake CVS repository containing the single file (as described below) and convert it using <a href="http://cvs2svn.tigris.org" rel="nofollow noreferrer">cvs2svn</a>.</p> <p>If the Subversion repository already exists, and the new file is to be the start of a new subproject in that repository, then you can do a conversion to a Subversion dumpfile (using cvs2svn's --dumpfile option), then load it into the existing repository using</p> <pre><code>$ svnadmin load --parent-dir=/newproject /path/to/svnrepo &lt;dumpfile.out </code></pre> <p>This will create a new subproject in Subversion including directories /newproject/trunk, /newproject/branches, and /newproject/tags and (for example) the trunk version of your file will be located at /newproject/trunk/myfile.</p> <p>Please be aware that the history of the new file will be migrated as a single series of Subversion commits <em>on top</em> of the commits that are already in your Subversion repository. Thus the Subversion commits will probably not be in chronological order, which breaks date-based searching in the Subversion repository.</p> <p>Either way, you will need to start by creating a fake CVS repository containing the single file:</p> <pre><code>$ CVSREPO=$HOME/fakecvs $ mkdir $CVSREPO $ mkdir $CVSREPO/CVSROOT # This directory is needed by cvs2svn but can be empty $ mkdir $CVSREPO/proj $ cp /path/to/myfile,v $CVSREPO/proj/ </code></pre> <p>Then convert from the path $CVSREPO/proj using <a href="http://cvs2svn.tigris.org" rel="nofollow noreferrer">cvs2svn</a>:</p> <pre><code>$ cvs2svn [options...] $CVSREPO/proj </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload