merge-changes-from-worktree

Installation
SKILL.md

Merge Changes From Worktree

Merge a branch that is checked out in an existing git worktree into the current branch. The merge must be fast-forward only.

Hard Rules

  1. Only merge branches that are currently associated with an existing git worktree entry.
  2. If the user did not provide a branch, discover supported branches and ask the user to choose using the Question tool.
  3. Never use a normal merge commit. The final merge command must be git merge --ff-only <branch> or equivalent fast-forward-only command.
  4. Do not discard, reset, or overwrite user changes. If a required worktree is dirty, ask before continuing.

Quick Start

Given a branch argument:

Related skills
Installs
1
First Seen
11 days ago