Execute qualquer Skill no Manus
com um clique
com um clique
Execute qualquer Skill no Manus com um clique
Começar$pwd:
$ git log --oneline --stat
stars:638
forks:47
updated:7 de fevereiro de 2026 às 00:56
SKILL.md
[HINT] Baixe o diretório completo da skill incluindo SKILL.md e todos os arquivos 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