Changes between Version 4 and Version 5 of SvnOverview


Ignore:
Timestamp:
02/12/07 01:46:14 (17 years ago)
Author:
arango
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnOverview

    v4 v5  
    4747
    4848 * Anyone should be able to view the contents of the repository, look at this wiki and view the tickets.
    49  * A username and password are required to put your changes back into the repository.
    50  * To work with data from a repository, you "checkout" a version.
    51  * You can check out the most recent version or a specific release, and either the entire repository, or just certain subdirectories.
     49 * A username and password are required to access the repository.
     50 * To work with data from a repository, you '''checkout''' a version.
     51 * You can check out the most recent version or a specific release, and either the entire repository, or just certain sub-directories.
    5252 * Checking a project out makes a copy of the most recent version on the client requesting checkout
    53  * Svn suggests only checking out into an empty directory
     53 * '''svn''' suggests only checking out into an empty directory
    5454
    5555'''What you get'''
    5656
    57  * If you choose to checkout the project into '''MyDir''' using the second command above, you'll find trunk, branches, and tags directories created in your local directory. Otherwise, if you only checkout the trunk (first command above) the files and sub-directories in the trunk will be created only.
    58  * Trunk is the main area for development, and unless otherwise instructed, work with the code in trunk
    59  * Tags will contain stable versions if they exist
    60  * Branches will have offshoots implementing new functionality- develop in the branch, then merge back into the trunk
     57 * If you choose to checkout the project into '''MyDir''' using the second command above, you'll find '''branches''', '''tags''' and '''trunk''' directories created in your local directory. Otherwise, if you only checkout the trunk (first command above) the files and sub-directories below the trunk will be created only.
     58 * Trunk is the main area for development, and unless otherwise instructed, work with the code in trunk.
     59 * Tags will contain stable frozen versions.
     60 * Branches will have offshoots implementing new functionality - develop in the branch, then merge back into the trunk.
    6161 
    6262'''Work flow'''
    6363
    64  * Start each session with update
    65  * Modify and debug the code locally
    66  * When you’re done with changes, commit changes to the repository
    67  * This will cause the version number to be updated at the repository
    68  * Repeat
     64 * Start each session with update.
     65 * Modify and debug the code locally.
     66 * When you’re done with changes, commit changes to the repository.
     67 * This will cause the version number to be updated at the repository.
     68 * Repeat.
    6969
    7070'''Conflict resolution'''