{"id":42531084,"url":"https://github.com/komish/git-org-repolist","last_synced_at":"2026-01-28T16:16:11.339Z","repository":{"id":57612546,"uuid":"199918970","full_name":"komish/git-org-repolist","owner":"komish","description":"List the repositories available within an organization's (private or public) scope on Github.","archived":false,"fork":false,"pushed_at":"2019-08-02T16:48:36.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-06-21T13:18:35.800Z","etag":null,"topics":["github","github-api","go","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","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/komish.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":"2019-07-31T19:44:43.000Z","updated_at":"2021-09-04T02:45:49.000Z","dependencies_parsed_at":"2022-09-02T13:31:36.979Z","dependency_job_id":null,"html_url":"https://github.com/komish/git-org-repolist","commit_stats":null,"previous_names":["komish/git-private-org-repo-ls"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/komish/git-org-repolist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/komish%2Fgit-org-repolist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/komish%2Fgit-org-repolist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/komish%2Fgit-org-repolist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/komish%2Fgit-org-repolist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/komish","download_url":"https://codeload.github.com/komish/git-org-repolist/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/komish%2Fgit-org-repolist/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846966,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["github","github-api","go","golang"],"created_at":"2026-01-28T16:16:10.257Z","updated_at":"2026-01-28T16:16:11.332Z","avatar_url":"https://github.com/komish.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# git-org-repolist\n\nCommand line utility to list the repositories available within an organization's (private or public) scope on Github.\n\n## Getting Started\n\n* Download the builds tarball/zip from the [releases page](https://github.com/komish/git-org-repolist/releases).\n* Extract tarball/zip and find the relevant binary for your OS-architecture.\n* Place at a preferred location in your user path and mark executable (if necessary).\n* Generate a [Github Personal Access Token](https://github.com/settings/tokens) with:\n  * No additional oath2 scopes for **Public Repos**:\n  * The following oath2 scopes for **Private Repos**:\n    * repo:status\n    * repo_deployment\n    * public_repo\n    * repo:invite\n    * read:org \n* Place this token at `${HOME}/.gittoken` (required). \n\nNOTE: An improperly scoped token will return a successful return code (because the token is accepted) but will return no repository links or data.\n\n## Usage\n\n\n```\n# git-org-repolist --help\nList repositories that exist within a private organization on Github.\n\nRequires a personal access token be placed in $HOME/.gittoken\n\thttps://github.com/settings/tokens\n\nRequired token scope:\n\trepo:status, repo_deployment, public_repo, repo:invite, read:org\n\nUsage: git-org-repolist [OPTIONS] orgname\n  -L\tPrint your Github API limits.\n  -v\tDisplay the version of this utility.\n```\n\n## Example Output\n\n```\n# git-org-repolist supercool-org\n-----------------------------------\n         Name: supercool-repo\n         Link: https://github.com/supercool-org/supercool-repo\n  Clone (SSH): git@github.com:supercool-org/supercool-repo\nClone (HTTPS): https://github.com/supercool-org/supercool-repo\n-----------------------------------\n(...)\n```\n\n## Hacking and Building for Multiple Platforms\n\nBinaries are built using the following process for multiple platforms.\n\n* Clone this repository.\n* Change directory to repository path.\n* Use `go get` to build external dependencies.\n* Run build commands to compile for various platforms.\n\n```\nenv GOOS=linux GOARCH=amd64 go build -o builds/linux-amd64/git-org-repolist\nenv GOOS=linux GOARCH=386 go build -o builds/linux-386/git-org-repolist\nenv GOOS=linux GOARCH=arm go build -o builds/linux-arm/git-org-repolist\nenv GOOS=linux GOARCH=arm64 go build -o builds/linux-arm64/git-org-repolist\nenv GOOS=windows GOARCH=amd64 go build -o builds/windows-amd64/git-org-repolist.exe\nenv GOOS=darwin GOARCH=amd64 go build -o builds/darwin-amd64/git-org-repolist\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkomish%2Fgit-org-repolist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkomish%2Fgit-org-repolist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkomish%2Fgit-org-repolist/lists"}