{"id":21206242,"url":"https://github.com/rtmigo/hubget","last_synced_at":"2025-10-25T07:40:51.703Z","repository":{"id":61030172,"uuid":"547558313","full_name":"rtmigo/hubget","owner":"rtmigo","description":"CLI for downloading files from GitHub without creating local repositiories","archived":false,"fork":false,"pushed_at":"2022-10-12T05:15:03.000Z","size":136,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T18:35:41.437Z","etag":null,"topics":["cli","directory","download","downloader","fetch","file","gh","github","repository","single","sync","synchronization"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rtmigo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-10-07T22:23:46.000Z","updated_at":"2022-10-12T03:22:45.000Z","dependencies_parsed_at":"2023-01-19T20:01:23.583Z","dependency_job_id":null,"html_url":"https://github.com/rtmigo/hubget","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/rtmigo/hubget","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtmigo%2Fhubget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtmigo%2Fhubget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtmigo%2Fhubget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtmigo%2Fhubget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rtmigo","download_url":"https://codeload.github.com/rtmigo/hubget/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtmigo%2Fhubget/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280923471,"owners_count":26414234,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-25T02:00:06.499Z","response_time":81,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","directory","download","downloader","fetch","file","gh","github","repository","single","sync","synchronization"],"created_at":"2024-11-20T20:54:58.188Z","updated_at":"2025-10-25T07:40:51.687Z","avatar_url":"https://github.com/rtmigo.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [hubget](https://github.com/rtmigo/hubget)  \n\nCLI for Linux, MacOS, Windows\n\n* Downloads files and directories from GitHub repos\n* Does not create/modify local Git repos\n* Files may be public or private (to which you have access)\n\n\n\n# Install\n\n## Make sure you have `gh`\n\n`hubget` will use `gh` internally. So you won't have to bother with \nauthentication when you have `gh` configured.\n\n`gh` is an official [GitHub CLI](https://cli.github.com/). Install it [from\nhere](https://github.com/cli/cli#installation).\n\n## Install `hubget`\n\nDownload and extract a binary executable [release](https://github.com/rtmigo/hubget/releases):\n\n* [for macOS](https://github.com/rtmigo/hubget/releases/latest/download/hubget_darwin_amd64.tgz)\n* [for Linux](https://github.com/rtmigo/hubget/releases/latest/download/hubget_linux_amd64.tgz)\n* [for Windows](https://github.com/rtmigo/hubget/releases/latest/download/hubget_windows_amd64.zip)\n\n\u003cdetails\u003e\u003csummary\u003eAlternatively, get the executable via the command line\u003c/summary\u003e\n\n### Linux\n\n```bash\n# download and extract to current working directory\nwget -c -O - \\\n  https://github.com/rtmigo/hubget/releases/latest/download/hubget_linux_amd64.tgz \\\n  | tar -xz\n\n# check it runs\n./hubget --version\n\n# maybe move to some directory in your $PATH\nmv -v ./hubget \"$HOME/.local/bin/\"\n```\n\u003c/details\u003e\n\n# Use\n\n## File to file\n\nDownload remote `file.txt` to local file `localname.txt`:\n\n```bash\nhubget https://github.com/user/repo/file.txt localname.txt\n```\n\n## File to stdout\n\nJust print the file to terminal:\n\n```bash\nhubget https://github.com/user/repo/file.txt\n```\n\nOr pipe to other process. For example, extract the file contents without\nsaving the archive a file:\n\n```bash\nhubget https://github.com/user/repo/file.tgz | tar -xz\n```\n\n## File into directory\n\nDownload remote `file.txt` to local `targetdir/file.txt`:\n\n```bash\nhubget https://github.com/user/repo/file.txt targetdir/\n```\n\nOr into the current working directory (note the dot at the end):\n\n```bash\nhubget https://github.com/user/repo/file.txt .\n```\n\n## Directory to directory\n\nDownload all files from remote `dir` storing them inside local `targetdir`:\n\n```bash\nhubget https://github.com/user/repo/dir/ targetdir/\n```\n\n# Disclaimer\n\nThis project not endorsed or associated with GitHub.\n\n# License\n\nCopyright © 2022 [Artsiom iG](https://github.com/rtmigo).\nReleased under the [MIT License](LICENSE).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtmigo%2Fhubget","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frtmigo%2Fhubget","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtmigo%2Fhubget/lists"}