Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:638
forks:47
updated:2026년 2월 7일 00:56
SKILL.md
[HINT] SKILL.md 및 모든 관련 파일을 포함한 전체 스킬 디렉토리를 다운로드합니다
| 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