| 1 | = svn checkout = |
| 2 | |
| 3 | To 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 | |
| 10 | You 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 |