Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note

In case of a sparse checkout (i.e. not fully recursive), externals are omitted

In case of large repositories, which is often the case with data repositories such as openearthrawdata, it is recommended to create a sparse checkout. This allows you to maintain the directory structure identical to the repository itself, but only get the data for specific parts that are of interest for you. In order to create a sparse checkout, you use the same menu of TortoiseSVN you would use for an usual (fully recursive) checkout; the only difference is the checkout depth:

Another option is to use Command line tools. The options for the checkout depth are:

  • Fully recursive: Checkout the entire tree, including all child folders and sub-folders.

    Note
    "Fully recursive" is default but is certainly not recommended here since the size of the data will soon grown beyond the storage capacity of your computer.
    Code Block
     svn checkout --username=USERNAME --depth infinity https://svn.oss.deltares.nl/repos/openearthrawdata/trunk/ openearthrawdata
  • Immediate children, including folders: Checkout the specified directory, including all files and child folders, but do not populate the child folders.

    Code Block
     svn checkout --username=USERNAME --depth immediates https://svn.oss.deltares.nl/repos/openearthrawdata/trunk/ openearthrawdata
  • Only file children: Checkout the specified directory, including all files but do not checkout any child folders.

    Code Block
     svn checkout --username=USERNAME --depth files https://svn.oss.deltares.nl/repos/openearthrawdata/trunk/ openearthrawdata
  • Only this item: Checkout the directory only. Do not populate it with files or child folders.

    Code Block
     svn checkout --username=USERNAME --depth empty https://svn.oss.deltares.nl/repos/openearthrawdata/trunk/ openearthrawdata