merge
Merge changes from the topic branch to the merge base branch. Use when the user wants to merge their session's work back to the base branch.
DeepseekModel
官方收录技能
质量 优秀 · 90
v1.0.0
获取
https://deepseekmodel.com/api/download.php?id=microsoft-vscode-src-vs-sessions-skills-merge-skill-md&format=skill
下载 .skill
标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name merge description Merge changes from the topic branch to the merge base branch. Use when the user wants to merge their session's work back to the base branch. Merge Changes Merge the topic branch (checked out in the current worktree) into the merge base branch (checked out in the main worktree). The context block appended to the prompt contains the source branch, target branch, and main worktree path. Guidelines Never force-push ( --force , --force-with-lease ) without explicit user approval. Never skip pre-push hooks (do not use --no-verify ). Never rewrite or drop commits without asking the user. When in doubt about conflict resolution — ask the user. Workflow 1. Commit uncommitted changes in the current worktree Check for uncommitted changes in the current worktree: git status --porcelain If there are uncommitted changes, use the /commit skill to commit them before continuing. 2. Merge the topic branch into the base branch Use git -C <main-worktree-path> to run commands against the main worktree without leaving the current worktree. git -C <main-worktree-path> merge <topic-branch> 3. Handle merge conflicts If the merge reports conflicts: 3.1. List conflicted files: git -C <main-worktree-path> diff --name-only --diff-filter=U 3.2. For each conflicted file, read the file content, resolve the conflict by preserving the intent of both sides, and stage the resolved file: git -C <main-worktree-path> add <resolved-file> 3.3. When in doubt on how to resolve a merge conflict, ask the user for guidance. If the user wants to abort, run: git -C <main-worktree-path> merge --abort 3.4. Once all conflicts are resolved and staged, commit the merge: git -C <main-worktree-path> commit --no-edit Validation After the merge completes, verify the result: Confirm the main worktree is clean: git -C <main-worktree-path> status --porcelain Confirm the topic branch is an ancestor of the base branch (i.e. all commits are merged): git -C <main-worktree-path> merge-base --is-ancestor <topic-branch> HEAD
Agent 识别该技能的关键词,点击任意一个即可复制。
该技能未提供触发词。
下载的 .skill 包内含以下字段。
| 字段 | 说明 |
|---|---|
| format | 格式标识(skill/v1) |
| skill_id | 技能唯一 ID |
| name | 技能名称 |
| version | 版本号 |
| description | 技能描述 |
| category | 所属分类(数组) |
| trigger_words | 触发词列表 |
| tags | 标签列表 |
| source | 来源标识 |
| source_url | 来源链接(本页地址) |
| exported_at | 导出时间(每次下载生成) |
| system_prompt | 系统提示词正文 |
| model_config | 模型参数:provider / model / temperature / max_tokens / top_p |
| examples | 示例 |
| install_guide | 各平台导入说明(Coze / Dify / Claude / 自定义框架) |