تشغيل أي مهارة في Manus
بنقرة واحدة
بنقرة واحدة
تشغيل أي مهارة في Manus بنقرة واحدة
ابدأ الآن$pwd:
$ git log --oneline --stat
stars:638
forks:47
updated:٧ فبراير ٢٠٢٦ في ٠٠:٥٦
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