Changes between Version 28 and Version 29 of SvnTutorial


Ignore:
Timestamp:
03/14/08 14:33:25 (16 years ago)
Author:
robertson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnTutorial

    v28 v29  
    2121}}}
    2222
    23 Now you should be able to look at the trunk and maybe some branches (depending on ACL), but bubba_branch won't be there yet.  You will create this later.
     23Now you should be able to look at the trunk and maybe some branches (depending on ACL), but bubba won't be there yet.  You will create this later.
    2424(You can also navigate the repository with a web browser, but cannot do any of the version control stuff that follows).
    2525
     
    6161You 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:
    6262{{{
    63 [roms_sed:/branches/bubba_branch]
     63[roms_sed:/branches/bubba]
    6464}}}
    6565
     
    6868{{{https://www.myroms.org/svn/cstm/trunk}}}[[BR]]
    6969to URL:[[BR]]
    70 {{{https://www.myroms.org/svn/cstm/branches/bubba_branch}}}[[BR]]
     70{{{https://www.myroms.org/svn/cstm/branches/bubba}}}[[BR]]
    7171Click OK.[[BR]]
    7272(stuff streams by...)
     
    9090
    9191svn co https://www.myroms.org/svn/cstm bubba_roms_sed
     92
     93If you only want your branch and not the entire repository type:
     94
     95svn co https://www.myroms.org/svn/cstm/branches/bubba my_branch
    9296}}}
    9397(See the footnote for correctly installing svn with ssl support on unix style machines below.)
     
    105109Navigate to the top directory in your local copy of your branch, e.g., {{{../bubba_roms_sed}}} and right-click. Choose
    106110{{{SVN Commit...}}}[[BR]]
    107 Commit to:  ''{{{https://www.myroms.org/svn/cstm/branches/bubba_branch}}}'' [[BR]]
     111Commit to:  ''{{{https://www.myroms.org/svn/cstm/branches/bubba}}}'' [[BR]]
    108112Message:  ''(add a meaningful comment here)'' [[BR]]
    109113Changes made:  ''(Will show files with changes)'' [[BR]]
     
    125129svn delete https://www.myroms.org/svn/cstm/branches/crs_branch -m "some useful comment"
    126130== Work Cycle ==
    127 You can Import this branch to another computer...that is the best way to synchronize, say, a desktop at work with a travelling laptop.[[BR]]
     131You can Import this branch to another computer...that is the best way to synchronize, say, a desktop at work with a traveling laptop.[[BR]]
    128132After that, the cycle is:[[BR]]
    129133At the top local directory, right-click, and under TortoiseSVN {{{Check for modifications}}}. Click Check Repository.[[BR]]