Changes between Version 14 and Version 15 of Notes/RCSUsage


Ignore:
Timestamp:
04/08/08 11:21:54 (16 years ago)
Author:
MarkWieringa
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Notes/RCSUsage

    v14 v15  
    2929== Adding a new file ==
    3030 To create a new file in the CABB branch it is first necessary to check in an
    31  empty file on the trunk as revision 1.0:
     31 empty file on the trunk as revision 1.0 (remove RCSINIT definition first):
    3232{{{
    33    unix%   mv myNewFile myNewFile.tmp
    34    unix%   cat /dev/null > myNewFile
    35    unix%   ci -r1.0 -m"Empty revision." myNewFile
     33   unix% unsetenv RCSINIT
     34   unix% mv mynewprog.for mynewprog.for.tmp
     35   unix% touch mynewprog.for
     36   unix% ci -r1.0 -m"Empty revision." mynewprog.for
    3637}}}
    37  enter an appropriate description as ci requests.  Then create symbolic
     38 enter an appropriate description for the new file as ci requests.  Then create symbolic
    3839 revision names:
    3940{{{
    40    unix%   rcs -ncabb_branchpoint:1.0 -ncabb:1.0.1 myNewFile
     41   unix% rcs -ncabb_branchpoint:1.0 -ncabb:1.0.1 mynewprog.for
    4142}}}
    4243 Finally, create the initial revision on the branch:
    4344{{{
    44    unix%   mv myNewFile.tmp myNewFile
    45    unix%   ci -rcabb.1 myNewFile
     45   unix% mv mynewprog.for.tmp mynewprog.for
     46   unix% ci -u -rcabb.1 -m"Initial cabb branch checkin" mynewprog.for
    4647}}}
    4748