Reputation: 26532
I have switched from dropbox + script to github LFS to store large files. Do you know a way to fetch a file stored in LFS using a simple curl/wget command?
To give you a bit of a background. The repository contains puppet code that automates our deployments. Since our company is using preoperative software we need to store some binary packages next to our puppet repo.
We deploy to two infrastructures one with git LFS and one without. (This issue cannot be easily fixed). On the former system I'd like to simply fetch the large files manually using curl / wget.
Upvotes: 4
Views: 3209
Reputation: 790
If you have access to a python interpreter you can use git-lfs-fetch.py to download the files.
Upvotes: 1