├── .coderabbit.yaml ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md └── instructions │ ├── ai.instructions.md │ ├── completions.instructions.md │ ├── editor.instructions.md │ ├── lib.instructions.md │ ├── sh.instructions.md │ └── testing.instructions.md ├── .gitignore ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── adapters ├── ai │ ├── aider.sh │ ├── claude.sh │ ├── codex.sh │ ├── continue.sh │ ├── cursor.sh │ ├── gemini.sh │ └── opencode.sh └── editor │ ├── atom.sh │ ├── cursor.sh │ ├── emacs.sh │ ├── idea.sh │ ├── nano.sh │ ├── nvim.sh │ ├── pycharm.sh │ ├── sublime.sh │ ├── vim.sh │ ├── vscode.sh │ ├── webstorm.sh │ └── zed.sh ├── bin ├── git-gtr └── gtr ├── completions ├── _git-gtr ├── gtr.bash └── gtr.fish ├── docs └── assets │ └── demo-parallel.png ├── lib ├── config.sh ├── copy.sh ├── core.sh ├── hooks.sh ├── platform.sh └── ui.sh └── templates ├── gtr.config.example ├── run_services.example.sh └── setup-example.sh /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @helizaga 2 | * @NatoBoram 3 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/instructions/ai.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/.github/instructions/ai.instructions.md -------------------------------------------------------------------------------- /.github/instructions/completions.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/.github/instructions/completions.instructions.md -------------------------------------------------------------------------------- /.github/instructions/editor.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/.github/instructions/editor.instructions.md -------------------------------------------------------------------------------- /.github/instructions/lib.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/.github/instructions/lib.instructions.md -------------------------------------------------------------------------------- /.github/instructions/sh.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/.github/instructions/sh.instructions.md -------------------------------------------------------------------------------- /.github/instructions/testing.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/.github/instructions/testing.instructions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/README.md -------------------------------------------------------------------------------- /adapters/ai/aider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/ai/aider.sh -------------------------------------------------------------------------------- /adapters/ai/claude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/ai/claude.sh -------------------------------------------------------------------------------- /adapters/ai/codex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/ai/codex.sh -------------------------------------------------------------------------------- /adapters/ai/continue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/ai/continue.sh -------------------------------------------------------------------------------- /adapters/ai/cursor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/ai/cursor.sh -------------------------------------------------------------------------------- /adapters/ai/gemini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/ai/gemini.sh -------------------------------------------------------------------------------- /adapters/ai/opencode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/ai/opencode.sh -------------------------------------------------------------------------------- /adapters/editor/atom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/atom.sh -------------------------------------------------------------------------------- /adapters/editor/cursor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/cursor.sh -------------------------------------------------------------------------------- /adapters/editor/emacs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/emacs.sh -------------------------------------------------------------------------------- /adapters/editor/idea.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/idea.sh -------------------------------------------------------------------------------- /adapters/editor/nano.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/nano.sh -------------------------------------------------------------------------------- /adapters/editor/nvim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/nvim.sh -------------------------------------------------------------------------------- /adapters/editor/pycharm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/pycharm.sh -------------------------------------------------------------------------------- /adapters/editor/sublime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/sublime.sh -------------------------------------------------------------------------------- /adapters/editor/vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/vim.sh -------------------------------------------------------------------------------- /adapters/editor/vscode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/vscode.sh -------------------------------------------------------------------------------- /adapters/editor/webstorm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/webstorm.sh -------------------------------------------------------------------------------- /adapters/editor/zed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/adapters/editor/zed.sh -------------------------------------------------------------------------------- /bin/git-gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/bin/git-gtr -------------------------------------------------------------------------------- /bin/gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/bin/gtr -------------------------------------------------------------------------------- /completions/_git-gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/completions/_git-gtr -------------------------------------------------------------------------------- /completions/gtr.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/completions/gtr.bash -------------------------------------------------------------------------------- /completions/gtr.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/completions/gtr.fish -------------------------------------------------------------------------------- /docs/assets/demo-parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/docs/assets/demo-parallel.png -------------------------------------------------------------------------------- /lib/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/lib/config.sh -------------------------------------------------------------------------------- /lib/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/lib/copy.sh -------------------------------------------------------------------------------- /lib/core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/lib/core.sh -------------------------------------------------------------------------------- /lib/hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/lib/hooks.sh -------------------------------------------------------------------------------- /lib/platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/lib/platform.sh -------------------------------------------------------------------------------- /lib/ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/lib/ui.sh -------------------------------------------------------------------------------- /templates/gtr.config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/templates/gtr.config.example -------------------------------------------------------------------------------- /templates/run_services.example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/templates/run_services.example.sh -------------------------------------------------------------------------------- /templates/setup-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderabbitai/git-worktree-runner/HEAD/templates/setup-example.sh --------------------------------------------------------------------------------