git-workflow
仓库创建 2026年5月12日最近提交 10 小时前SkillHot 收录 20 天前
▸ 精选理由
把常见的分支与提交规范流程自动化,显著节省重复操作时间。
这个 Skill 做什么
自动化完整的 Git 开发流程:分支、提交、PR 到清理。
把常见的 Git 操作自动化:创建 feature 分支、按 Conventional Commit 写原子提交、交互式 rebase、squash 合并和生成 PR 描述。适合想把提交流程标准化、干净地整理提交历史或自动清理分支时使用。特点是内建分支命名、worktree 支持和一套可复用的脚本化流程。
▸ 展开 SKILL.md 英文原文
Automate the complete Git development workflow — create feature branches with conventional naming, atomic commits with conventional commit messages, interactive rebase, squash merges, PR body generation from commit history, branch cleanup, and git worktree patterns. Use when user asks to create a branch, commit changes, make a PR, rebase, squash, clean up branches, or follow a Git workflow. Do NOT use for CI/CD pipeline configuration (use ci-cd), code review (use code-review), or GitHub Actions workflows.
110
Stars
14
Forks
40
仓库内 Skill
+7
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/EliasOulkadi/shokunin/master/.pack/skills/git-workflow/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/EliasOulkadi/shokunin/master/.pack/skills/git-workflow/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Git Workflow Automate the development cycle: branch, commit, PR, review, merge, cleanup. Follows conventional commits and trunk-based development. ## Workflow ### Step 1: Create a feature branch ```powershell scripts/create-feature-branch.ps1 -Name "add-user-auth" -Type feat ``` This: 1. Detects default branch (main/master) 2. Fetches and pulls latest 3. Creates `feat/add-user-auth` from base 4. Pushes upstream with tracking **Branch naming:** | Type | Prefix | Example | |------|--------|---------| | Feature | `feat/` | `feat/add-user-auth` | | Fix | `fix/` | `fix/login-redirect` | | Docs | `docs/` | `docs/api-readme` | | Refactor | `refactor/` | `refactor/auth-middleware` | | Chore
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有