File contents Git工作流规范 (个人开发)
本skill提供针对个人开发者的Git工作流规范、提交信息标准和常用操作指南。
何时使用
用户询问Git工作流或分支策略
用户需要提交信息格式建议
用户需要Git命令操作指导
用户需要配置.gitignore
用户需要Git别名配置建议
用户遇到Git常见问题(冲突、撤销等)
需要根据项目类型自动适配Git配置
输入与输出
输入
用户问题或需求描述
项目类型(可选,用于适配建议)
当前Git操作场景(可选)
输出
Git命令示例和解释
提交信息格式建议
分支策略指导
配置文件模板(.gitignore、别名等)
问题解决方案
相关文档链接
快速开始
提交信息规范
# 基本格式
<type>[optional scope]: <description>
# 示例
feat(Parser): 添加自然语言日期解析
fix(UI): 修复按钮点击无响应问题
docs: 更新README使用说明
类型说明:
类型
用途
feat
新功能
fix
修复bug
refactor
重构代码
style
样式调整
docs
文档更新
test
添加测试
chore
杂项/配置
perf
性能优化
⚠️ 注意:范围(Scope)是完全可选的! 详见 提交规范指南。
分支工作流程
# 1. 开始新功能
git switch master
git pull
git switch -c feature/smart-parser
# 2. 开发并提交
git add .
git commit -m "feat(Parser): 添加自然语言日期解析"
# 3. 合并回master
git switch master
git merge feature/smart-parser
git branch -d feature/smart-parser
# 4. 发布版本
git tag -a v1.2.0 -m "发布v1.2.0"
git push origin master --tags
文档导航
📚 指南 (Guides)
文档
内容
提交规范指南
Conventional Commits规范、类型说明、Scope建议、提交示例
分支策略指南
分支结构、工作流程、命名规范、版本标签管理
Worktree指南
多工作树使用场景、命令、最佳实践
项目类型适配
各类型项目的.gitignore和Scope建议
📖 参考 (References)
文档
内容
Git别名配置
常用别名配置及使用方法
.gitignore模板
.NET、Node.js、Java、Python等项目模板
官方文档引用
Git官方文档、Conventional Commits等链接
📝 速查表 (Cheatsheets)
文档
内容
常用命令速查
日常开发、分支、撤销、历史查看等命令
问题处理指南
常见Git问题及解决方案
提示 : 根据具体需求查阅对应的详细文档。如需快速参考,请查看速查表;如需深入理解,请查看指南文档。
Source: SleepyCoderZyl/ToDoapp — distributed by TomeVault .
1 --- 2 name: sleepycoderzyl-todoapp-git-workflow 3 description: Git工作流规范 (个人开发) 4 --- 5 6 # Git工作流规范 (个人开发) 7 8 本skill提供针对个人开发者的Git工作流规范、提交信息标准和常用操作指南。 9 10 ## 何时使用 11 12 - 用户询问Git工作流或分支策略 13 - 用户需要提交信息格式建议 14 - 用户需要Git命令操作指导 15 - 用户需要配置.gitignore 16 - 用户需要Git别名配置建议 17 - 用户遇到Git常见问题(冲突、撤销等) 18 - 需要根据项目类型自动适配Git配置 19 20 ## 输入与输出 21 22 ### 输入 23 24 - 用户问题或需求描述 25 - 项目类型(可选,用于适配建议) 26 - 当前Git操作场景(可选) 27 28 ### 输出 29 30 - Git命令示例和解释 31 - 提交信息格式建议 32 - 分支策略指导 33 - 配置文件模板(.gitignore、别名等) 34 - 问题解决方案 35 - 相关文档链接 36 37 ## 快速开始 38 39 ### 提交信息规范 40 41 ```bash 42 # 基本格式 43 <type>[optional scope]: <description> 44 45 # 示例 46 feat(Parser): 添加自然语言日期解析 47 fix(UI): 修复按钮点击无响应问题 48 docs: 更新README使用说明 49 ``` 50 51 **类型说明:** 52 | 类型 | 用途 | 53 |------|------| 54 | `feat` | 新功能 | 55 | `fix` | 修复bug | 56 | `refactor` | 重构代码 | 57 | `style` | 样式调整 | 58 | `docs` | 文档更新 | 59 | `test` | 添加测试 | 60 | `chore` | 杂项/配置 | 61 | `perf` | 性能优化 | 62 63 **⚠️ 注意:范围(Scope)是完全可选的!** 详见 [提交规范指南](guides/commit-guide.md)。 64 65 ### 分支工作流程 66 67 ```bash 68 # 1. 开始新功能 69 git switch master 70 git pull 71 git switch -c feature/smart-parser 72 73 # 2. 开发并提交 74 git add . 75 git commit -m "feat(Parser): 添加自然语言日期解析" 76 77 # 3. 合并回master 78 git switch master 79 git merge feature/smart-parser 80 git branch -d feature/smart-parser 81 82 # 4. 发布版本 83 git tag -a v1.2.0 -m "发布v1.2.0" 84 git push origin master --tags 85 ``` 86 87 ## 文档导航 88 89 ### 📚 指南 (Guides) 90 91 | 文档 | 内容 | 92 |------|------| 93 | [提交规范指南](guides/commit-guide.md) | Conventional Commits规范、类型说明、Scope建议、提交示例 | 94 | [分支策略指南](guides/branch-guide.md) | 分支结构、工作流程、命名规范、版本标签管理 | 95 | [Worktree指南](guides/worktree-guide.md) | 多工作树使用场景、命令、最佳实践 | 96 | [项目类型适配](guides/project-types.md) | 各类型项目的.gitignore和Scope建议 | 97 98 ### 📖 参考 (References) 99 100 | 文档 | 内容 | 101 |------|------| 102 | [Git别名配置](references/aliases.md) | 常用别名配置及使用方法 | 103 | [.gitignore模板](references/gitignore-templates.md) | .NET、Node.js、Java、Python等项目模板 | 104 | [官方文档引用](references/official-docs.md) | Git官方文档、Conventional Commits等链接 | 105 106 ### 📝 速查表 (Cheatsheets) 107 108 | 文档 | 内容 | 109 |------|------| 110 | [常用命令速查](cheatsheets/common-commands.md) | 日常开发、分支、撤销、历史查看等命令 | 111 | [问题处理指南](cheatsheets/troubleshooting.md) | 常见Git问题及解决方案 | 112 113 --- 114 115 **提示**: 根据具体需求查阅对应的详细文档。如需快速参考,请查看速查表;如需深入理解,请查看指南文档。 116 117 --- 118 > Source: [SleepyCoderZyl/ToDoapp](https://github.com/SleepyCoderZyl/ToDoapp) — distributed by [TomeVault](https://tomevault.io). 119 <!-- tomevault:4.0:skill_md:2026-06-16 -->
tomevault-io/skills-registry/tree/main/sleepycoderzyl--todoapp--git-workflow commit a1695da379
Frequently asked questions How do I install the Sleepycoderzyl Todoapp Git Workflow skill? Run npx skillmds@latest add tomevault-io/sleepycoderzyl-todoapp-git-workflow in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Sleepycoderzyl Todoapp Git Workflow skill do? Git工作流规范 (个人开发) It is listed under Productivity on SkillMD.
Is Sleepycoderzyl Todoapp Git Workflow safe to use? This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Sleepycoderzyl Todoapp Git Workflow? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Sleepycoderzyl Todoapp Git Workflow free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Sleepycoderzyl Todoapp Git Workflow? tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.