Skip to content
Skillv1.0.0

git-workflow

OpenClaw Git 工作流技能。 当用户提及以下任务时使用: - 提交代码或文档 - 推送到远程仓库 - 管理多个 Git 仓库 - 查看 Git 状态 核心能力: - 自动检测文件变更 - 自动生成提交信息 - 自动推送到远程仓库 - 多仓库管理

by aaaaqwq(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from aaaaqwq/agi-super-team (skills/git-workflow/SKILL.md). Install upstream with npx skills add aaaaqwq/agi-super-team --skill git-workflow. Copyright stays with the author (MIT).

Git 工作流技能

核心指令

第一步:检测文件变更

# 检查 Git 状态
git status

# 查看变更文件
git diff --name-only

第二步:添加文件

# 添加所有变更
git add .

# 或添加指定文件
git add <file1> <file2>

第三步:生成提交信息

根据变更内容自动生成提交信息:

# 提交信息格式
<type>: <description>

# 类型说明
feat: 新功能
fix: 修复 bug
docs: 文档更新
style: 代码格式
refactor: 重构
test: 测试
chore: 构建/工具

第四步:提交并推送

# 提交
git commit -m "提交信息"

# 推送
git push

示例

示例 1: 分析完成后自动提交

触发: 分析任务完成

操作:

  1. 检测新生成的文件
  2. 添加到 Git
  3. 生成提交信息
  4. 提交并推送

提交信息示例:

feat: 完成股票分析

- 分析 000657 中钨高新
- 生成三高股票筛选报告
- 保存到 Stock-Analysis 仓库

示例 2: 多仓库管理

触发: 需要提交到多个仓库

操作:

  1. 识别文件所属仓库
  2. 分别提交到对应仓库
  3. 分别推送

仓库示例:

  • Jarvis: 记忆、配置
  • Stock-Analysis: 股票分析代码
  • Amazon-Analyzer: 亚马逊运营工具

故障排除

错误 1: Git 未配置

错误消息: "Please tell me who you are"

解决方案:

git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"

错误 2: 推送失败

错误消息: "Authentication failed"

解决方案:

  1. 检查 Git 凭据
  2. 使用 Token 代替密码
  3. 配置 SSH Key

错误 3: 冲突

错误消息: "CONFLICT (content)"

解决方案:

  1. 查看冲突文件
  2. 手动解决冲突
  3. 标记为解决
    git add <resolved_file>
  4. 完成提交
    git commit

最佳实践

提交频率

  • 小改动:随时提交
  • 大功能:功能完成后提交
  • 每日结束:提交当日工作

提交信息

  • 清晰简洁
  • 使用现在时
  • 首字母大写
  • 不超过 50 字符

分支管理

  • main/master: 主分支
  • feature/*: 功能分支
  • fix/*: 修复分支
  • docs/*: 文档分支

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/aaaaqwq-agi-super-team-git-workflow/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

aaaaqwq-agi-super-team-git-workflow.ocm.jsonjson
{
  "ocm": "1",
  "id": "aaaaqwq-agi-super-team-git-workflow",
  "kind": "skill",
  "name": "git-workflow",
  "description": "OpenClaw Git 工作流技能。 当用户提及以下任务时使用: - 提交代码或文档 - 推送到远程仓库 - 管理多个 Git 仓库 - 查看 Git 状态 核心能力: - 自动检测文件变更 - 自动生成提交信息 - 自动推送到远程仓库 - 多仓库管理",
  "publisher": "aaaaqwq",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "git",
      "version-control",
      "automation",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "OpenClaw Git 工作流技能。 当用户提及以下任务时使用: - 提交代码或文档 - 推送到远程仓库 - 管理多个 Git 仓库 - 查看 Git 状态 核心能力: - 自动检测文件变更 - 自动生成提交信息 - 自动推送到远程仓库 - 多仓库管理"
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/aaaaqwq/agi-super-team",
      "path": "skills/git-workflow/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/aaaaqwq/agi-super-team/blob/HEAD/skills/git-workflow/SKILL.md",
      "key": "aaaaqwq/agi-super-team/skills/git-workflow/SKILL.md"
    },
    "compatibility": "需要以下环境:\n- Git 已安装\n- 已配置 Git 用户信息\n- 已配置远程仓库\n\n支持平台:\n- OpenClaw ✅\n- Claude Code ✅\n",
    "license": "MIT"
  },
  "instructions": "# Git 工作流技能\n\n## 核心指令\n\n### 第一步:检测文件变更\n```bash\n# 检查 Git 状态\ngit status\n\n# 查看变更文件\ngit diff --name-only\n```\n\n### 第二步:添加文件\n```bash\n# 添加所有变更\ngit add .\n\n# 或添加指定文件\ngit add <file1> <file2>\n```\n\n### 第三步:生成提交信息\n根据变更内容自动生成提交信息:\n\n```bash\n# 提交信息格式\n<type>: <description>\n\n# 类型说明\nfeat: 新功能\nfix: 修复 bug\ndocs: 文档更新\nstyle: 代码格式\nrefactor: 重构\ntest: 测试\nchore: 构建/工具\n```\n\n### 第四步:提交并推送\n```bash\n# 提交\ngit commit -m \"提交信息\"\n\n# 推送\ngit push\n```\n\n## 示例\n\n### 示例 1: 分析完成后自动提交\n**触发**: 分析任务完成\n\n**操作**:\n1. 检测新生成的文件\n2. 添加到 Git\n3. 生成提交信息\n4. 提交并推送\n\n**提交信息示例**:\n```\nfeat: 完成股票分析\n\n- 分析 000657 中钨高新\n- 生成三高股票筛选报告\n- 保存到 Stock-Analysis 仓库\n```\n\n#",
  "cost": {
    "context_tokens": 348
  }
}

Fetch it by URL: GET /api/v1/registry/aaaaqwq-agi-super-team-git-workflow/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.