xxxxxxxxxx
svn ls https://github.com/USER/REPO/branches/branch_Name/Folder_Name/
svn export https://github.com/USER/REPO/branches/branch_Name/Folder_Name/
xxxxxxxxxx
GitHub: How to download specific folder:
Option A) https://downgit.github.io/#/home
Option B) http://kinolien.github.io/gitzip/
xxxxxxxxxx
mkdir test
git init
git remote add origin <repository URL>
git config core.sparsecheckout true
echo "path/to/GitHub/folderName/*" >> .git/info/sparse-checkout
git pull origin main
xxxxxxxxxx
git clone --depth 1 --filter=blob:none --sparse <repository-url>
cd <repository-name>
git config core.sparseCheckout true
echo "<folder-path>" >> .git/info/sparse-checkout
git checkout