Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Last active July 4, 2022 18:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save claudiosanches/1199d1564a739abeef2968e7d0b0a4c8 to your computer and use it in GitHub Desktop.
Save claudiosanches/1199d1564a739abeef2968e7d0b0a4c8 to your computer and use it in GitHub Desktop.
SVN - Checkout project and don't fetch content for all tags
svn co --depth=files https://plugins.svn.wordpress.org/woocommerce/ # Checkout project without fetching content
cd woocommerce
svn up assets branches trunk # Fetch content for everything except for the tags
svn up --set-depth=immediates tags # Create tags directory tree, but don't fetch any content
svn up --set-depth=infinity tags/<tag_number> # Fetch content for a tag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment