svn sunset
Opened this issue · 2 comments
etho201 commented
Tip: Use Subversion to quickly download the Traefik2 folder into the config directory.
svn export https://github.com/etho201/docker-pi-stacks/trunk/config/traefik2
The main thing we heard when speaking with customers and communities was checking out a subset of the repository–a single directory, or only the latest commit. I have good news: with sparse checkout, sparse index, and partial clone, Git can now do a pretty decent job at these workflows.
etho201 commented
git clone --filter=blob:none --no-checkout --depth 1 --sparse <project-url>
cd <project>
Specify folders you want to clone
git sparse-checkout add <folder1> <folder2>
git checkout