Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:638
forks:47
updated:7 de febrero de 2026, 00:56
SKILL.md
[HINT] Descarga el directorio completo de la habilidad incluyendo SKILL.md y todos los archivos relacionados
| name | merge |
| description | ブランチをメインにマージしてお掃除する |
| disable-model-invocation | true |
| allowed-tools | Bash(git:*) |
作業ブランチを main にマージし、不要になったブランチと worktree を削除する。
git branch --show-current
<branch> とする)main の場合はマージ対象がないため中断するgit status --short
git checkout main
git merge --no-ff <branch>
git branch -d <branch>
git worktree list
<branch> に紐づく worktree がある場合のみ以下を実行:git worktree remove <worktree-path>
最終状態を表示する:
git log --oneline -5
git branch
git worktree list