npx skills add https://github.com/odysseus0/symphony --skill pullgit config rerere.enabled truegit config rerere.autoupdate trueorigin 远程仓库存在。git fetch origingit pull --ff-only origin $(git branch --show-current)origin/main 之前,拉取在远程进行的分支更新(例如,GitHub 的自动提交)。广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
git -c merge.conflictstyle=zdiff3 merge origin/main 以获得更清晰的冲突上下文。git add <files>git commit(或者如果合并暂停,使用 git merge --continue)AGENTS.md 中的仓库策略)。git status 列出冲突文件。git diff 或 git diff --merge 查看冲突区块。git diff :1:path/to/file :2:path/to/file 和 git diff :1:path/to/file :3:path/to/file 来比较基础版本与我们的/他们的版本,以从意图层面查看文件。merge.conflictstyle=zdiff3 时,冲突标记包括:
<<<<<<< 我们的版本,||||||| 基础版本,======= 分隔线,>>>>>>> 他们的版本。ours/theirs。git diff --check除非没有安全、可逆的替代方案,否则不要请求输入。优先做出最佳努力的决定,记录理由,然后继续。
仅在以下情况下询问用户:
否则,继续合并,在注释中简要解释决定,并留下清晰、可审查的提交历史。
每周安装次数
130
代码仓库
GitHub 星标数
53
首次出现
14 天前
安全审计
安装于
codex129
claude-code10
opencode9
github-copilot9
amp9
cline9
git config rerere.enabled truegit config rerere.autoupdate trueorigin remote exists.git fetch origingit pull --ff-only origin $(git branch --show-current)origin/main.git -c merge.conflictstyle=zdiff3 merge origin/main for clearer conflict context.git add <files>git commit (or git merge --continue if the merge is paused)AGENTS.md).git status to list conflicted files.git diff or git diff --merge to see conflict hunks.git diff :1:path/to/file :2:path/to/file and git diff :1:path/to/file :3:path/to/file to compare base vs ours/theirs for a file-level view of intent.merge.conflictstyle=zdiff3, conflict markers include:
<<<<<<< ours, ||||||| base, ======= split, theirs.Do not ask for input unless there is no safe, reversible alternative. Prefer making a best-effort decision, documenting the rationale, and proceeding.
Ask the user only when:
Otherwise, proceed with the merge, explain the decision briefly in notes, and leave a clear, reviewable commit history.
Weekly Installs
130
Repository
GitHub Stars
53
First Seen
14 days ago
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
codex129
claude-code10
opencode9
github-copilot9
amp9
cline9
Azure Data Explorer (Kusto) 查询技能:KQL数据分析、日志遥测与时间序列处理
133,300 周安装
>>>>>>>ours/theirs only when you are certain one side should win entirely.git diff --check