bring_changes
Apply uncommitted changes from a worktree to your repo's working tree via git apply, without merging or rewriting history. On failure, changes nothing and returns the raw git error.
Instructions
Aplica los cambios (sin commitear) de un worktree al working tree de tu repo real, vía git apply — NUNCA hace merge/rebase de historia, solo mueve el diff. Revisá con diff primero. Si algo no aplica limpio, no toca nada y te devuelve el error de git tal cual.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| paths | No | Limitar a estos paths (default: todos los cambios del worktree). | |
| stage | No | Si true, además deja los cambios en el índice (git add) — default false: solo working tree, para que vos decidas qué stagear. | |
| worktree_path | Yes | ||
| target_repo_path | Yes | Repo destino (normalmente tu working directory real del mismo proyecto). |