← ClaudeAtlas

public-git-workflow-expert-baselisted

Git 工作流知识基座。extends netresearch/git-workflow-skill 上游通用 Git 知识,叠加团队 commit 规范、分支策略、Gitea 工作流、镜像同步经验。供 devlab-git-workflow-expert 等下游技能通过 extends 继承。
seed-forge/harness-ai-kit · ★ 22 · AI & Automation · score 74
Install: claude install-skill seed-forge/harness-ai-kit
# Git Workflow Knowledge Base Foundational guidance for Git version control workflows, branching strategies, commit conventions, and collaborative development. > **Source**: Extends [netresearch/git-workflow-skill](https://github.com/netresearch/git-workflow-skill) v1.18.8 (CC-BY-SA-4.0). Team-specific rules overlay on top. ## 架构分层 ``` ┌─────────────────────────────────────────────┐ │ 下游技能(extends 本基座) │ │ devlab-git-workflow-expert 等 │ ├─────────────────────────────────────────────┤ │ 团队规范叠加层(本文件 §团队规范章节) │ │ commit 规范 / 分支策略 / Gitea / 镜像同步 │ ├─────────────────────────────────────────────┤ │ 上游通用知识(netresearch/git-workflow-skill) │ │ branching / commits / PR / CI / hooks │ └─────────────────────────────────────────────┘ ``` ## Workflow 1. Determine the workflow model (Git Flow / GitHub Flow / Trunk-based). 2. Create branch following naming conventions (Section: Branch Naming). 3. Make atomic commits with Conventional Commits (Section: Commit Conventions). 4. Push and open PR with proper description (Section: PR Workflow). 5. Ensure CI green + all review threads resolved before merge. 6. Merge with appropriate strategy — **feature PR 默认 squash**(见 §PR Workflow)。 7. Release 打 tag:`v{major}.{minor}.{patch}`(见 §Release & Tag)。 ## Critical Rules (Non-Negotiable) 1. **No direct push to main** — always open a PR. 2. **No merge before all threads resolved** — see references/pull-request-workflow.md. 3. **Feature PR 默认