Я ищу способ загрузить некоторые zip-файлы git LFS, которые у меня есть в репозитории, без необходимости извлекать весь репозиторий.До сих пор я пробовал следующее:
curl -L < URL to the file RAW download on github page > - Это просто загружает HTML-файл, а не фактический файл.
curl -L < URL to the file RAW download on github page >
curl -L < URL from .lfsconfig file + object ID from the file's pointer information in git repo > -> выдает ошибку «Не найдено»
curl -L < URL from .lfsconfig file + object ID from the file's pointer information in git repo >
Пример попытки:
curl -L https://gitlfs.es.com/api/company/myrepository/content/framework/7d5dfcf764118df4867dc676b615e1ee4bf67e5b37fd56275f8845d
curl -L https://gitlfs.es.com/api/company/myrepository/7d5dfcf764118df4d188d5838867dc676b615e1ee4bf67e5b37fd56275f8
curl -L https://gitlfs.es.com/api/company/myrepository/sha256:7d5dfcf764118df4d188d5838867dc676b615e1ee4bf67e5b37fd56275f8845d
Похоже, что ничего из вышеперечисленного не работает
Любые выводы будут оценены.