بنقرة واحدة
feature
Create and manage feature branches in a git worktree with consistent naming and PR workflow (squash merge).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create and manage feature branches in a git worktree with consistent naming and PR workflow (squash merge).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create and manage non-urgent bugfix branches in a git worktree with standard PR workflow (squash merge).
Create and manage maintenance/refactor branches in a git worktree with consistent naming and PR workflow (squash merge).
Create and manage documentation-only branches in a git worktree with consistent naming and PR workflow (squash merge).
Create and manage urgent hotfix branches in a git worktree with stricter guardrails and PR checklist (squash merge).
Guide a two-phase release workflow using git worktrees: run scripts on main, then commit changes on release/<version> via PR.
Create and manage exploratory spike branches in a git worktree; PR optional, cleanup removes worktree only.
| name | feature |
| description | Create and manage feature branches in a git worktree with consistent naming and PR workflow (squash merge). |
feature/<slug> branch name.../.worktrees/pluto/<branch_sanitized>.origin/main (prefer rebase for clean history).origin/mainfeature/<slug>---../.worktrees/plutobranch_sanitized: replace / with __../.worktrees/pluto/<branch_sanitized><slug>, branch feature/<slug>, and worktree path.git fetch origingit worktree add <path> <branch>git worktree add -b <branch> <path> origin/maingit fetch origin then git rebase origin/maingit push -u origin HEADgh pr create:
maingit status --porcelain is not empty, ask for confirmation before removal.git worktree remove <path>git worktree prune