Changes between Version 23 and Version 24 of SvnTutorial


Ignore:
Timestamp:
08/01/07 16:49:20 (17 years ago)
Author:
csherwood
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnTutorial

    v23 v24  
    5757
    5858
    59 == Create a Branch ==
     59== Create a Branch with Tortoise ==
    6060You must use the exact branch name that was created for you by a [wiki:CSTM_Admins CSTM administrator]. If you are unsure of your branch name, check the [wiki:ACL Access Control List], searching for a line like:
    6161{{{
     
    7272
    7373The branch will exist in the repository...you can repeat the steps above to make a copy of the branch on your computer (but not in the same directory you made in the example above, because that contains a version of the trunk under SVN control).[[BR]]
     74
     75== Make a Branch from the Command Line ==
     76(PC users can do this from the Cygwin command line)
     77
     78{{{
     79csherwood@chrshedtxp ~
     80$ svn mkdir https://www.myroms.org/svn/cstm/branches/crs/ -m "Cleaned top directory for my branches"
     81Committed revision 976.
     82
     83csherwood@chrshedtxp ~
     84$ svn copy https://www.myroms.org/svn/cstm/trunk https://www.myroms.org/svn/cstm/branches/crs/cstm_trunk -m "copy of cstm trunk"
     85
     86Committed revision 977.
     87}}}
    7488
    7589== Make Changes in Your Branch ==