Changes between Initial Version and Version 1 of SVNCheckOut


Ignore:
Timestamp:
Mar 8, 2008, 5:14:16 AM (16 years ago)
Author:
pagameba
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SVNCheckOut

    v1 v1  
     1= svn checkout =
     2
     3To check out a copy of '''trunk''', a branch, a tagged version, or a sandbox, you need to know the ''URL'' and use {{{checkout}}} (or {{{co}}} for short) operation.  For instance:
     4
     5 * {{{svn co http://svn.osgeo.org/fusion/trunk}}} - check out trunk
     6 * {{{svn co http://svn.osgeo.org/fusion/branches/fusion-1.0}}} - check out the branch for version 1.0
     7 * {{{svn co http://svn.osgeo.org/fusion/tags/fusion-1.0.0}}} - check out the 1.0.0 released version
     8 * {{{svn co http://svn.osgeo.org/fusion/sandbox/pagameba}}} - check out pagameba's sandbox
     9
     10You can also specify the -r <revision> option to checkout a specific revision from the repository:
     11
     12 * {{{svn co -r 123 http://svn.osgeo.org/fusion/trunk}}} - check out trunk at revision 123