ghget-cli v0.0.4
ghget
Download a directory or file from a GitHub URL you are viewing.
Requirements
The corresponding CLI must be installed and authenticated.
- For GitHub, install GitHub CLI
- then
gh auth login
- then
This tool uses GitHub or GitLab rest api to fetch repository archive. It is possible to authenticate with an access token, but an additional token must be issued, which must then be passed to the tool.
To keep it simple and robust, we are taking advantage of the CLI's authentication feature.
Install
You can quickly try with npx
npx ghget-cli@latest https://github.com/bisquit/ghget/tree/main/sampleor install globally
npm i -g ghget-cliyarn global add ghget-clipnpm add -g ghget-cliUsage
Hit ghget <url>.
ghget https://github.com/bisquit/ghget/tree/main/sampleSee examples.
How it works
This tool fetches archive(.zip) with API, and after user confirmed, decompresses it and copies into current directory.
Because branches can include /, we cannot distinguish the URL main/src is which:
- a)
main/srcbranch - b)
mainbranch andsrcdirectory
So it attempts to fetch archive with "possible refs" (in this case, main and main/src) concurrently.
It takes a bit networking cost, but works faster than git clone.
Related and Comparison
This tool is initialy inspired by
While these are primarily intended for scaffolding, this tool is designed for getting a portion of the repository.
Also I aimed for intuitive commands you don't need to remember how to specify.
2 years ago