Changes between Version 13 and Version 14 of HowToSVN


Ignore:
Timestamp:
Apr 28, 2008, 1:39:30 AM (16 years ago)
Author:
hamish
Comment:

Non-recursive checkout howto

Legend:

Unmodified
Added
Removed
Modified
  • HowToSVN

    v13 v14  
    5454
    5555
     56=== Non-recursive checkout ===
     57
     58 * SVN does not allow you to check out a single file at a time. Sometimes this can be awkward as it can force you to checkout the entire repository for the sake of changing one file in the top directory.
     59
     60 Solution: do a {{{--non-recursive}}} checkout:
     61
     62{{{
     63    svn checkout --non-recursive https://svn.osgeo.org/grass/grass-web/trunk/ trunk/
     64}}}
     65
    5666
    5767== See Also ==