Changes between Version 25 and Version 26 of SvnTutorial


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

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnTutorial

    v25 v26  
    2626= TortoiseSVN Users =
    2727
    28 == Checkout a Copy of the Trunk ==
     28The way you do this using the GUI is a little roundabout. The steps are:
     29 * Make a local working copy of the trunk (or branch) you want to start with.
     30 * Use the GUI to make a branch from this working copy.
     31 * Checkout a working copy of the branch.
     32
     33== Checkout a Local Working Copy of the Trunk ==
    2934This process brings a copy of main code from the repository to your computer and places it under SVN control.[[BR]]
    3035Make a directory...name it something meaningful to you, for example {{{bubba_roms_sed}}}[[BR]]
     
    7681The 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]]
    7782
     83= Command Line =
     84This is more straightforward, and does not require you make a working copy of the source.
     85PC users can do this from the Cygwin command line, if they installed SVN during the Cygwin installation.
     86The steps are:
     87 * Make a subdirectory in the repository for the branch
     88 * Copy the source code to the subdirectory as a branch
     89 * Checkout a local working copy to mess with
     90
    7891== Make a Branch from the Command Line ==
    79 (PC users can do this from the Cygwin command line)
    8092
    8193{{{
     
    89101Committed revision 977.
    90102}}}
     103
     104
    91105
    92106== Make Changes in Your Branch ==