Skip to content

Instantly share code, notes, and snippets.

@stephenparish
Created February 9, 2012 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephenparish/1782826 to your computer and use it in GitHub Desktop.
Save stephenparish/1782826 to your computer and use it in GitHub Desktop.
SVN Partial Checkout
# checkout only immediate folders for a partial checkout
svn co http://subversion/project/trunk my_checkout --depth immediates
# change the depth and update
svn update --set-depth infinity
# another example
svn checkout --depth empty http://svnserver/trunk/ proj
svn update --set-depth infinity proj/foo
svn update --set-depth infinity proj/bar
svn update --set-depth infinity proj/baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment