Changes between Version 21 and Version 22 of SvnIntro


Ignore:
Timestamp:
05/24/07 19:38:46 (17 years ago)
Author:
csherwood
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnIntro

    v21 v22  
    2121
    2222You don't need to worrry about the server-side...that is done by whoever is hosting the Subversion repository.
     23
    2324 
    2425You do need client software on your local machine. Most Linuxes come with subversion (the command name is svn), so shell commands may be used without installing additional software. You can get svn in your [wiki:Cygwin Cygwin] installation by requesting it when running Setup.exe. (Look for it under Devel in the Select Packages menu).
     
    3839
    3940You only check out once, after that, a hidden directory called .svn exists to 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}}}.  For more detail on command line use and syntax, see the [http://svnbook.red-bean.com Svn book].
    40 
    41 Several 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:
    42 
    43 
    44 '''[wiki:TortoiseHelp Help on using TortoiseSVN, a GUI (subversion) client for PC]'''
    45 
    46 '''[wiki:SmartsvnHelp Help on using SmartSVN a java based multi-platform GUI (subversion) client]'''
    4741
    4842----