git-helper

仓库创建 2026年7月4日最近提交 22 天前SkillHot 收录 22 天前
▸ 精选理由

实用的 git 助手,能提升代码管理与提交质量。

这个 Skill 做什么

提供分支管理、提交信息优化与常见 git 工作流建议。

帮你把 Git 的分支、提交和工作流弄清楚,给出建分支、写 commit message、合并和回滚的实用建议。需要创建分支、整理提交历史或不确定怎么把改动规范地推上远端时会用到。特色是给出可运行的命令示例和最佳实践格式,能让团队保持一致、历史更干净。

▸ 展开 SKILL.md 英文原文

Provides git workflow assistance, branch management, and commit message optimization

开发编程git分支管理提交规范通用
0
Stars
0
Forks
12
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/MetalbolicX/opencode-agent-skills-md/main/.opencode/skills/git-helper/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/MetalbolicX/opencode-agent-skills-md/main/.opencode/skills/git-helper/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Git Helper

A comprehensive skill for git workflow management and best practices.

## Quick Start

Use this skill when you need help with:
- Branch creation and management
- Commit message formatting
- Git workflow optimization
- Repository maintenance

## Common Workflows

### Creating a New Feature Branch
```bash
git checkout -b feature/your-feature-name
git push -u origin feature/your-feature-name
```

### Writing Good Commit Messages

Follow the conventional commit format:

```
type(scope): description

[optional body]

[optional footer]
```

Types: feat, fix, docs, style, refactor, test, chore

### Git Cleanup Commands

# Remove stale branches
```bash
git remote prune origin
```

# Cl
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有