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
xxxxxxxxxx
# use the web app below; simply copy and paste the github directory url
https://downgit.github.io/#/home
xxxxxxxxxx
GitHub: How to download specific folder:
Option A) https://downgit.github.io/#/home
Option B) http://kinolien.github.io/gitzip/
xxxxxxxxxx
1. Visit: https://techhelpbd.com/gitdown
2. Paste your Github folder link
3. Then you can download your Github folder
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
svn ls https://github.com/USER/REPO/branches/branch_Name/Folder_Name/
svn export https://github.com/USER/REPO/branches/branch_Name/Folder_Name/