{"id":50432635,"url":"https://github.com/trypsynth/gitkeep","last_synced_at":"2026-05-31T15:00:43.013Z","repository":{"id":355336706,"uuid":"1227700893","full_name":"trypsynth/gitkeep","owner":"trypsynth","description":"Manage your GitHub archive.","archived":false,"fork":false,"pushed_at":"2026-05-20T21:47:45.000Z","size":204,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-05-21T03:06:16.644Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/trypsynth.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-03T03:32:13.000Z","updated_at":"2026-05-20T21:47:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/trypsynth/gitkeep","commit_stats":null,"previous_names":["trypsynth/gitkeep"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/trypsynth/gitkeep","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trypsynth%2Fgitkeep","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trypsynth%2Fgitkeep/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trypsynth%2Fgitkeep/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trypsynth%2Fgitkeep/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trypsynth","download_url":"https://codeload.github.com/trypsynth/gitkeep/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trypsynth%2Fgitkeep/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33735663,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"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":[],"created_at":"2026-05-31T15:00:27.740Z","updated_at":"2026-05-31T15:00:42.998Z","avatar_url":"https://github.com/trypsynth.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gitkeep\n\nA CLI tool for maintaining local archives of GitHub users and organizations. Point it at one or more accounts and it clones every repo, then keeps them up to date on subsequent runs.\n\n## Download\n\nPre-built binaries are available on the [releases page](https://github.com/trypsynth/gitkeep/releases/latest).\n\n| Platform | Architecture | Download |\n|----------|-------------|---------|\n| Linux | x86_64 | [gitkeep-x86_64-unknown-linux-musl](https://github.com/trypsynth/gitkeep/releases/latest/download/gitkeep-x86_64-unknown-linux-musl) |\n| Linux | ARM64 | [gitkeep-aarch64-unknown-linux-musl](https://github.com/trypsynth/gitkeep/releases/latest/download/gitkeep-aarch64-unknown-linux-musl) |\n| macOS | x86_64 | [gitkeep-x86_64-apple-darwin](https://github.com/trypsynth/gitkeep/releases/latest/download/gitkeep-x86_64-apple-darwin) |\n| macOS | ARM64 (Apple Silicon) | [gitkeep-aarch64-apple-darwin](https://github.com/trypsynth/gitkeep/releases/latest/download/gitkeep-aarch64-apple-darwin) |\n| Windows | x86_64 | [gitkeep-x86_64-pc-windows-gnu.exe](https://github.com/trypsynth/gitkeep/releases/latest/download/gitkeep-x86_64-pc-windows-gnu.exe) |\n| Windows | ARM64 | [gitkeep-aarch64-pc-windows-gnullvm.exe](https://github.com/trypsynth/gitkeep/releases/latest/download/gitkeep-aarch64-pc-windows-gnullvm.exe) |\n\n## Install\n\n### With cargo\n\n```bash\ncargo install gitkeep\n```\n\n### From source\n\n```bash\ngit clone https://github.com/trypsynth/gitkeep\ncd gitkeep\ncargo install --path .\n```\n\n## Quick start\n\n```bash\ngitkeep init          # set archive directory and clone URL preference\ngitkeep login         # authenticate with a GitHub personal access token\ngitkeep add trypsynth # add a user (clones all their repos immediately)\ngitkeep sync          # sync everything\ngitkeep list          # show what's tracked\n```\n\n## Commands\n\n### `init`\nConfigure the archive directory and whether to use SSH or HTTPS clone URLs. Re-run at any time to update settings; your token and tracked users are preserved.\n\n### `login`\nAuthenticate with a GitHub personal access token. Opens the token creation page in your browser, validates the token, and saves it to config. Also adds your own account to the tracked list automatically.\n\n### `add \u003cUSERNAME\u003e...`\nAdd one or more GitHub users or orgs to the archive list and clone their repos immediately.\n\n| Flag | Description |\n|------|-------------|\n| `--forks` | Include forked repositories for these accounts |\n| `--frozen` | Track the account but never update it during bulk syncs |\n| `--no-sync` | Add to the tracked list without cloning right now |\n\n### `sync [USERNAME]...`  _(alias: `run`)_\nSync all tracked accounts. Passing usernames adds them to the tracked list and syncs them immediately (same as `add` + `sync`).\n\n| Flag | Description |\n|------|-------------|\n| `--forks` | Include forks for this run only (does not save to config) |\n| `-p, --pull-only` | Only pull existing repos; skip checking for new ones |\n| `-n, --new-only` | Only clone new repos; skip pulling existing ones |\n| `-q, --quiet` | Suppress all output except errors and the final summary |\n| `-v, --verbose` | Show raw git output and per-repo detail |\n\n### `skip \u003cuser/repo\u003e...`\nExclude a specific repo from future syncs. Accepts `user/repo` format.\n\n### `unskip \u003cuser/repo\u003e...`\nRe-enable a previously skipped repo.\n\n### `list`  _(alias: `ls`)_\nShow all tracked users and orgs, including any per-account flags and the list of skipped repos.\n\n### `remove \u003cUSERNAME\u003e...`  _(alias: `rm`)_\nStop tracking one or more users or orgs. Prompts to delete the local archive directory; pass `--delete` to skip the prompt.\n\n## License\n\n`gitkeep` is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrypsynth%2Fgitkeep","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrypsynth%2Fgitkeep","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrypsynth%2Fgitkeep/lists"}