Changes between Version 9 and Version 10 of SvnIntro


Ignore:
Timestamp:
12/21/06 18:49:03 (18 years ago)
Author:
emontgomery
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnIntro

    v9 v10  
    2121'''Using Subversion'''
    2222
    23 To enable use of Svn, client software must be installed on the local machine.  Two GUI clients are described in the links below.  Most Linuxes come with svn installed, so shell commands may be used withour installing additional software.  However, the syntax will not be described here (refer to the [http://svnbook.red-bean.com book], if you're interested).
     23To enable use of Svn, client software must be installed on the local machine. Most Linuxes come with svn installed, so shell commands may be used without installing additional software.  The general form of subversion commands is:
     24 * {{{   svn action from to qualifiers}}}
     25To check-out the files from the ROMS_SED repository, enter:
     26 * {{{   svn checkout http://svn1.hosted-projects.com/cmgsoft/roms_sed /home/mydir/code/roms_sed}}}
     27
     28You only check out once, after that, a hidden directory called .svn exist that keep track of the source, destination and a bunch of other information.  So to commit your changes back to the repository, cd into a local dir under subversion control (/home/mydir/code/roms_sed or below) and enter {{{ svn commit}}}.
     29
     30Several GUI front-ends to subversion exist, allowing the user can have visual prompts to help them manage their files. Two free GUI clients we've tried are described in the links below:
     31
    2432
    2533'''[wiki:TortoiseHelp Help on using TortoiseSVN, a GUI (subversion) client for PC]'''