How to download repo from artifactory(jfrog).
조회 수: 111 (최근 30일)
이전 댓글 표시
Wanted to know what is are the command to download repo from artifactory(jfrog).
댓글 수: 0
답변 (1개)
Pratyush Swain
2023년 12월 15일
편집: Pratyush Swain
2023년 12월 15일
Hi Vickey,
I understand you want to download repository from jfrog artifactory. The two ways to achieve this task are as follows:
1-Download through jfrog CLI:
We can use the jfrog CLI to download folders.The CLI can be downloaded with "cUrl" as follows:
$ curl -fL https://getcli.jfrog.io/v2-jf | sh
Run the executable as "./jf " after download. Please refer to https://docs.jfrog-applications.jfrog.io/jfrog-applications/jfrog-cli/install for other alternatives of installing jfrog CLI.
After installation, we can use the dl command of the jfrog CLI as follows:
$ jfrog rt dl example-repo-local/amd-64/ --include-dirs
This command will download the content of the amd-64 folder from the example-repo-local repository and will save it under the same structure locally on the machine.
2- Download through jfrog REST API:
As an alternative to jfrog CLI, we can also retrieve folders throgh jfrog REST API's.This allows to download the content of a folder as an archive file( 'zip','tar','tar.gz', and 'tgz').Please refer to https://jfrog.com/help/r/jfrog-rest-apis/artifactory-rest-apis for the same.
For more information on downloading folders from repository, please refer to following links.
Hope this helps.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Downloads에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!