{"id":49223519,"url":"https://github.com/mistralys/repo-parallelizer","last_synced_at":"2026-04-24T05:04:45.593Z","repository":{"id":349937416,"uuid":"1199568896","full_name":"Mistralys/repo-parallelizer","owner":"Mistralys","description":"Parallelization of VS Code workspaces with multiple local git repositories.","archived":false,"fork":false,"pushed_at":"2026-04-22T10:38:28.000Z","size":1555,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-22T11:31:43.546Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/Mistralys.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-02T13:34:17.000Z","updated_at":"2026-04-22T10:38:31.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Mistralys/repo-parallelizer","commit_stats":null,"previous_names":["mistralys/repo-parallelizer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Mistralys/repo-parallelizer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mistralys%2Frepo-parallelizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mistralys%2Frepo-parallelizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mistralys%2Frepo-parallelizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mistralys%2Frepo-parallelizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mistralys","download_url":"https://codeload.github.com/Mistralys/repo-parallelizer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mistralys%2Frepo-parallelizer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32209897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T03:15:14.334Z","status":"ssl_error","status_checked_at":"2026-04-24T03:15:11.608Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":"2026-04-24T05:04:38.656Z","updated_at":"2026-04-24T05:04:45.572Z","avatar_url":"https://github.com/Mistralys.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Repository Parallelizer\n\nManage multiple related git repositories as a single project — with parallel workspaces, branch orchestration, and a web-based GUI.\n\n## What Is This?\n\nWhen a project spans several git repositories, keeping them in sync is tedious: cloning each one, switching branches across all of them, remembering which repos belong together. **Repository Parallelizer** treats a group of repos as one \"project\" and lets you create isolated **workspaces** — each with its own branch configuration, cloned copies, and a ready-to-open VS Code `.code-workspace` file.\n\nSet up a project once, then spin up as many parallel workspaces as you need — one for the main branch, one for a feature, one for a hotfix — without stepping on your own toes.\n\n## Features\n\n- **Project-based repo grouping** — register repositories once, then combine them into projects.\n- **Parallel workspaces** — create multiple independent workspaces per project, each with its own branch assignments and cloned copies.\n- **One-click branch switching** — switch branches across all repos in a workspace in a single operation, with conflict detection.\n- **VS Code integration** — auto-generated `.code-workspace` files let you open an entire workspace in VS Code instantly.\n- **Web GUI** — a built-in browser UI for managing repositories, projects, workspaces, and branches — no terminal required after setup.\n- **Live git status** — automatic polling shows current branches, uncommitted changes, and unfetched commits at a glance.\n- **Workspace health checks** — detect and fix configuration drift (missing repos, stale workspace files).\n- **Interactive CLI** — a keyboard-driven terminal menu for quick access to setup, server launch, and documentation generation.\n- **Private repo support** — per-host credential management for cloning private repositories.\n\n## How Does This Compare to Git Worktrees?\n\nGit worktrees let you check out multiple branches of a **single** repository side by side — great when your entire project lives in one repo. Repository Parallelizer solves a different problem: when your project spans **multiple** repositories that need to move together.\n\n| | Git Worktrees | Repository Parallelizer |\n|---|---|---|\n| **Scope** | One repository, multiple branches | Multiple repositories, multiple branches |\n| **Branch switching** | Per-repo only | Coordinated across all repos at once |\n| **VS Code workspace** | Manual setup | Auto-generated `.code-workspace` files |\n| **Status overview** | Per-repo (`git status`) | Aggregated across all repos in a workspace |\n\nIf your project is a single repo, worktrees are the simpler choice. If you're juggling a frontend, backend, shared library, and infrastructure repo that all need to be on the same feature branch — that's where this tool comes in.\n\n## Requirements\n\n- **Node.js** \u003e= 18\n- **npm** \u003e= 9\n- **git** \u003e= 2.28\n\n## Quick Start\n\n```bash\n# Clone and build\ngit clone https://github.com/Mistralys/repo-parallelizer.git\ncd repo-parallelizer\nnpm install\nnpm run build\n\n# Run the setup wizard to create your config\nnpm link\nparalizer setup\n\n# Launch the GUI\nparalizer serve\n```\n\nThe setup wizard walks you through creating a `config.json` with your projects folder and storage location. Once complete, open `http://localhost:4200` in your browser to start managing your repositories.\n\n### Alternative: run without installing globally\n\n```bash\n# Unix / macOS\n./menu.sh\n\n# Windows\nmenu.cmd\n```\n\n### CLI commands\n\n| Command | Description |\n|---------|-------------|\n| `paralizer` | Open the interactive CLI menu |\n| `paralizer serve` | Start the GUI server directly |\n| `paralizer setup` | Run the setup wizard |\n| `paralizer docs` | Generate project documentation |\n\n## Learn More\n\n| Resource | Description |\n|----------|-------------|\n| [Project Manifest](docs/agents/project-manifest/README.md) | Architecture overview and document index |\n| [REST API](docs/agents/project-manifest/rest-api.md) | All HTTP endpoints with methods, paths, and response shapes |\n| [GUI Frontend](docs/agents/project-manifest/gui-frontend.md) | SPA architecture, routes, and components |\n| [Tech Stack](docs/agents/project-manifest/tech-stack.md) | Runtime, dependencies, and architectural patterns |\n| [API Surface](docs/agents/project-manifest/api-surface.md) | Exported types, classes, and function signatures |\n| [Configuration](docs/agents/project-manifest/constraints.md) | Conventions, validation rules, and config schema |\n| [Contributing](CONTRIBUTING.md) | Development setup, build commands, and test instructions |\n| [Changelog](CHANGELOG.md) | Release history |\n\n## License\n\n[ISC](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmistralys%2Frepo-parallelizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmistralys%2Frepo-parallelizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmistralys%2Frepo-parallelizer/lists"}