Changes between Version 4 and Version 5 of TortoiseSVN_Guide


Ignore:
Timestamp:
Feb 23, 2008, 4:18:58 AM (16 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TortoiseSVN_Guide

    v4 v5  
    1818== Section 1: Creating Your Account ==
    1919
    20 Request an account from '''Philip Taylor''' (Ykkrosh). '''Ensure you let him know your desired Password.''' You will also be given a User Name (typically your first name). This will be used as your personal login to access the SVN repositories.
     20Request an account from '''Stuart Walpole''' (Acumen), '''Jason Bishop''' (Wijitmaker) or '''Mark Thompson''' (MarkT) (in that order). '''Ensure you let that person know your desired Password.''' You will also be given a User Name (typically your first name). This will be used as your personal login to access the SVN repositories.
    2121
    2222== Section 2: Getting and Installing TortoiseSVN ==
     
    3030For anyone except programmers:
    3131
     32{{{
    3233      http://svn.wildfiregames.com/svn/ps/trunk/binaries
    33 
    34       http://svn.wildfiregames.com/svn/ps/trunk/docs
     34}}}
    3535
    3636For programmers:
    3737
     38{{{
    3839      http://svn.wildfiregames.com/svn/ps/trunk
     40}}}
    3941
    40 ''I also suggest creating a unique directory. I use the directory {{{C:\0ad}}}, but feel free to use whatever directory you see fit.''
     42''I also suggest creating a unique directory. I use the directory `C:\0ad`, but feel free to use whatever directory you see fit.''
    4143
    4244''The directory you check the game out to should ideally have no spaces in its path. For example, C:\My Documents\0AD may cause problems.''
     
    4850'''2''' Right click to bring up the context menu. Select 'Checkout...' in the SVN section of the menu:
    4951
    50 http://www.wildfiregames.com/~code/resources/guide/guide1.jpg
     52[[Image(http://www.wildfiregames.com/~code/resources/guide/guide1.jpg)]]
    5153
    5254'''3''' In the 'Url of repository' field enter the URL above. Leave all other fields at their defaults:
    5355
    54 http://www.wildfiregames.com/~code/resources/guide/guide2.jpg
     56[[Image(http://www.wildfiregames.com/~code/resources/guide/guide2.jpg)]]
    5557
    56 '''4''' After pressing OK, a dialog refering to caching the SVN server's host key could come up. Accept that key if it does.
     58'''4''' After pressing OK, a dialog refering to caching the CVS server's host key could come up. Accept that key if it does.
    5759
    5860You should then be prompted for your account login. Enter the username and password you have requested. In some cases you may be asked for your password twice.
     
    6062Once your password has been succesfully entered, you should see the repository beginning to download:
    6163
    62 http://www.wildfiregames.com/~code/resources/guide/guide3.jpg
     64[[Image(http://www.wildfiregames.com/~code/resources/guide/guide3.jpg)]]
    6365
    6466Note: This will take a while. That's perfectly normal. You're checking out over a hundred megabytes of stuff. Leave it to get on with it, and go do something else for a while.
     
    7476'''2''' Right click to bring up the context menu. In the SVN section of the menu, select 'Update...':
    7577
    76 http://www.wildfiregames.com/~code/resources/guide/guide10.jpg
     78[[Image(http://www.wildfiregames.com/~code/resources/guide/guide10.jpg)]]
    7779
    7880'''3''' You should immediately see a status dialog detailing what SVN is updating:
    7981
    80 http://www.wildfiregames.com/~code/resources/guide/guide11.jpg
     82[[Image(http://www.wildfiregames.com/~code/resources/guide/guide11.jpg)]]
    8183
    8284The next two sections describe how to add to or change the repository contents, and are only available to accounts with write access (artists and programmers).
     
    9092'''2''' Right click to bring up the context menu. Select 'Commit...' in the SVN area of the menu:
    9193
    92 http://www.wildfiregames.com/~code/resources/guide/guide4.jpg
     94[[Image(http://www.wildfiregames.com/~code/resources/guide/guide4.jpg)]]
    9395
    9496'''3''' Enter appropriate comments about the changes in the 'Enter Log Message' dialog:
    9597
    96 '''The SVN comments are filtered so that they can appear on the 0 A.D. webpage and demonstrate our progress. Put a hash (#) in front of any line that you want to appear on the web log. All other lines won't show up on the website, but can still be seen in the TortoiseSVN log.'''
     98'''The SVN comments are filtered so that they can appear on the 0 A.D. webpage and demonstrate our progress. Put a hash (#) in front of any line that you want to appear on the web log. All other lines will be ignored.'''
    9799
    98 http://www.wildfiregames.com/~code/resources/guide/guide5.jpg
     100[[Image(http://www.wildfiregames.com/~code/resources/guide/guide5.jpg)]]
    99101
    100102'''4''' Press 'OK'. The commit should begin and you should see the following status dialog:
    101103
    102 http://www.wildfiregames.com/~code/resources/guide/guide6.jpg
     104[[Image(http://www.wildfiregames.com/~code/resources/guide/guide6.jpg)]]
    103105
    104106== Section 6: Adding files to the repository ==
     
    110112'''2''' Right click to bring up the context menu. Under the 'TortoiseSVN' sub-menu, select the 'Add...' option:
    111113
    112 http://www.wildfiregames.com/~code/resources/guide/guide7.jpg
     114[[Image(http://www.wildfiregames.com/~code/resources/guide/guide7.jpg)]]
    113115
    114116'''3''' Confirm which files you want to add to the repository:
    115117
    116 http://www.wildfiregames.com/~code/resources/guide/guide8.jpg
     118[[Image(http://www.wildfiregames.com/~code/resources/guide/guide8.jpg)]]
    117119
    118120'''4''' Press 'OK'. You will see a status dialog detailing what was added to the SVN repository:
    119121
    120 http://www.wildfiregames.com/~code/resources/guide/guide9.jpg
     122[[Image(http://www.wildfiregames.com/~code/resources/guide/guide9.jpg)]]
    121123
    122124'''NOTE:''' To finalise the addition of files to the SVN repository you must '''Commit''' the files you added! Follow the section on Committing files above to see how that is done.
    123125
    124126== Appendix ==
    125  * You can update your SVN password from http://wildfiregames.com/users/svn/svnadmin.php
     127 * You can update your SVN password from http://svn.0ad.homeip.net/admin/svnadmin.php
    126128
    127129For programmers:
    128130
    129  * A log (showing all recent activity) and source browser is available via Trac, at http://trac.wildfiregames.com/
     131 * A log (showing all recent activity) and source browser is available via Trac, at http://trac.0ad.homeip.net/