A simple utility to upload and download (very) large files with CLI using Git LFS.
- Upload:
git
- Download:
wget
git pull
this repository- If not done already, type
git lfs install
- Put all your dataset in a folder named
<dataset>
- Type
./upload.sh <dataset>
In practice we directly use wget
to retrieve the elements from the repository. In order to download a dataset <dataset>
, just type:
wget -nc https://raw.githubusercontent.com/SonyCSLParis/test-lfs/refs/heads/master/download.sh
chmod u+x download.sh
./download.sh <dataset>
That's it!