{"id":28948999,"url":"https://github.com/juiceofcode/ghosthub","last_synced_at":"2026-02-23T12:56:34.860Z","repository":{"id":290646545,"uuid":"975083315","full_name":"juiceofcode/ghosthub","owner":"juiceofcode","description":"A CLI tool to manage multiple Git profiles with SSH keys.","archived":false,"fork":false,"pushed_at":"2025-04-29T22:05:55.000Z","size":34240,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-14T23:25:41.189Z","etag":null,"topics":[],"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/juiceofcode.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}},"created_at":"2025-04-29T18:54:04.000Z","updated_at":"2025-05-10T22:38:33.000Z","dependencies_parsed_at":"2025-04-30T08:44:41.796Z","dependency_job_id":null,"html_url":"https://github.com/juiceofcode/ghosthub","commit_stats":null,"previous_names":["juiceofcode/ghosthub","juiceofcode/ghosthub-cli"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/juiceofcode/ghosthub","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juiceofcode%2Fghosthub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juiceofcode%2Fghosthub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juiceofcode%2Fghosthub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juiceofcode%2Fghosthub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/juiceofcode","download_url":"https://codeload.github.com/juiceofcode/ghosthub/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juiceofcode%2Fghosthub/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29743667,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T07:44:07.782Z","status":"ssl_error","status_checked_at":"2026-02-23T07:44:07.432Z","response_time":90,"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":[],"created_at":"2025-06-23T11:37:29.656Z","updated_at":"2026-02-23T12:56:34.855Z","avatar_url":"https://github.com/juiceofcode.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GhostHub CLI\n\nA CLI tool to manage multiple Git profiles with SSH keys.\n\n## Installation\n\n### Option 1: Using Go Install (Recommended for developers)\n\nIf you have Go installed, you can install GhostHub directly:\n\n```bash\ngo install github.com/juiceofcode/ghosthub@latest\n```\n\n### Option 2: Manual Installation\n\n#### Linux/macOS\n\n1. Download the latest release for your system:\n   - For Linux: `ghosthub-linux-amd64`\n   - For macOS (Intel): `ghosthub-darwin-amd64`\n   - For macOS (Apple Silicon): `ghosthub-darwin-arm64`\n\n2. Make the file executable and move it to your PATH:\n```bash\nchmod +x ghosthub-\u003cyour-system\u003e\nsudo mv ghosthub-\u003cyour-system\u003e /usr/local/bin/ghosthub\n```\n\n#### Windows\n\n1. Download the latest release: `ghosthub-windows-amd64.exe`\n2. Rename it to `ghosthub.exe`\n3. Move it to a directory in your PATH (e.g., `%USERPROFILE%\\AppData\\Local\\Microsoft\\WindowsApps`)\n\n### Option 3: Using Installation Scripts\n\n#### Linux/macOS\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/juiceofcode/ghosthub.git\ncd ghosthub\n```\n\n2. Build and install:\n```bash\n./build.sh\n./install.sh\n```\n\n#### Windows\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/juiceofcode/ghosthub.git\ncd ghosthub\n```\n\n2. Build and install:\n```bash\nbuild.bat\ninstall.bat\n```\n\n## Usage\n\n### Add a new Git profile\n\n```bash\nghosthub add [profile] --name \"Your Name\" --email \"your.email@example.com\" --keygen \"ed25519\"\n```\n\nOptions:\n- `--name`: Your Git user name\n- `--email`: Your Git email\n- `--keygen`: SSH key type (ed25519 or rsa-4096)\n\n### Delete a Git profile\n\n```bash\nghosthub delete [profile]\n```\n\n### List all Git profiles\n\n```bash\nghosthub list\n```\n\n### Switch to a Git profile\n\n```bash\nghosthub use [profile]\n```\n\n### Show current Git profile information\n\n```bash\nghosthub info\n```\n\n### Generate a new SSH key\n\n```bash\nghosthub key [profile] --type \"ed25519\"\n```\n\nOptions:\n- `--type`: SSH key type (ed25519 or rsa-4096)\n\n## Examples\n\n### Add a new profile\n\n```bash\nghosthub add work --name \"John Doe\" --email \"john@company.com\" --keygen \"ed25519\"\n```\n\n### Switch to a profile\n\n```bash\nghosthub use work\n```\n\n### List all profiles\n\n```bash\nghosthub list\n```\n\n### Delete a profile\n\n```bash\nghosthub delete work\n```\n\n### Generate a new SSH key\n\n```bash\nghosthub key work --type \"ed25519\"\n```\n\n## System Requirements\n\n- Go 1.16 or higher (for development)\n- Git\n- OpenSSH (for SSH key management)\n- Windows 10/11, macOS 10.15+, or Linux\n\n## License\n\nMIT \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuiceofcode%2Fghosthub","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuiceofcode%2Fghosthub","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuiceofcode%2Fghosthub/lists"}