Last active
July 4, 2022 18:32
-
-
Save claudiosanches/1199d1564a739abeef2968e7d0b0a4c8 to your computer and use it in GitHub Desktop.
SVN - Checkout project and don't fetch content for all tags
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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