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:0
forks:0
updated:May 6, 2026 at 02:51
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | pause-for-conflict |
| description | merge/rebase/cherry-pick/pull 冲突必读:列清两边意图与代价,等用户拍板 |
在回答之前仔细思考并一步一步来;这个问题比看上去要难。
A = 我电脑上的代码;B = 外来的。与 git 的 ours/theirs 不直接对应。
| op | A | B |
|---|---|---|
git merge X(在 Y 上) | Y | X |
git rebase Y(在 X 上) | X | Y |
git pull | 本地未推 commit | 拉来的 |
git cherry-pick X | 当前分支已有 | X |
git status 判 op,按上表标 A / BAskUserQuestion 问选择(C = 合并两边):
A / B / C全选 A / 全选 B / 全选 C / 自定义;自定义等用户速记 1A 2B 3C1. <文件路径> · <模块> — <分歧一句话>
A(<分支/提交>):<做了什么 + 为什么>
B(<分支/提交>):<做了什么 + 为什么>
→ 推荐 A/B/C:<理由>;代价:<丢什么>
| 情况 | 处理 |
|---|---|
| 纯格式(空行 / 缩进)无语义差异 | 按项目规范直接合 |
| 用户说"你看着办" | 说选择 + 理由,再动手 |