Changes between Version 1 and Version 2 of Notes/Subversion/Importing


Ignore:
Timestamp:
11/22/07 14:31:01 (17 years ago)
Author:
VincentMcIntyre
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Notes/Subversion/Importing

    v1 v2  
    33== Importing RCS files to a repository ==
    44
     5STILL WORKING ON THIS PAGE
     6
     7=== Initial Import ===
     8{{{
     9 % mkdir miriad
     10 % rsync -av /nfs/atapplic/miriad/ miriad/
     11 % cvs2svn --dump 20071123.svndump miriad
     12 % svn import < 20071123.svndump
     13
     14}}}
     15
     16=== next phase ===
     17need to remove the compiled binaries
     18need to check out the code (and svn add all the files?)
     19  No - just do the cvs2svn dump. that does the checkout but it leaves
     20  the source in the '.rcs' directory. Must move it from there.
     21  The dump leaves darwin_ppc, darwin_x86 there as well.
     22  These contain just a short GNUmakedefs file.
     23
     24need to change the chkout, chklog targets
     25need to add handlers of .svn directories
     26
     27makefile has an 'ftp' target, the comment about solaris-only is wrong.
    528
    629----