Changes between Version 17 and Version 18 of SvnTutorial


Ignore:
Timestamp:
02/03/07 15:26:58 (17 years ago)
Author:
hetland
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnTutorial

    v17 v18  
    1010
    1111== Check to Make Sure You Can See the Repository ==
     12
     13The easiest way to view a repository is to simply look at it in a web browser.  Enter the url of the repository (and your username and password when prompted if the site is protected), and start looking.  This is also a good way to see individual files in the repository without actually downloading them.
    1214
    1315If you are using TortoiseSVN, right-click on a directory and choose {{{Repo-browser}}}.
     
    4749}}}
    4850Click OK.
     51
     52If you are using svn from the command line, as you would on most unix style machines, check out the respository using the command:
     53{{{svn co  https://svn1.hosted-projects.com/cmgsoft/roms_sed/  buba_roms_sed}}}
     54(See the footnote for correctly installing svn with ssl support on unix style machines below.)
     55
    4956
    5057== Create a Branch ==
     
    93100Finally, {{{SVN Commit...}}}[[BR]]
    94101
     102== Footnote on building svn on unix-like machines ==
     103On Unix style machines, you will need to have subversion installed.  You will typically want to build this from source, as you will want to compile with secure socket layers enabled (the binary versions of svn do not have this feature).  Find the source at {{{http://subversion.tigris.org/}}}.  Configure and make with
     104{{{./configure --with-ssl
     105make
     106sudo make install}}}
    95107
    96108
     
    98110
    99111
    100 
    101