Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:638
forks:47
updated:February 7, 2026 at 00:56
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| 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