Awesome-omni-skill git-workflow
Git Flow 브랜치 전략 및 PR 절차 가이드. 브랜치 생성, 커밋, PR 작성 시 참조. "branch", "commit", "PR", "pull request", "merge", "git flow" 키워드로 트리거.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/cli-automation/git-workflow" ~/.claude/skills/diegosouzapw-awesome-omni-skill-git-workflow-e4c346 && rm -rf "$T"
manifest:
skills/cli-automation/git-workflow/SKILL.mdsource content
Git Workflow Guide
Branch Strategy (Git Flow)
┌─────────────────────────────────────────────────────────────────┐ │ Branch Flow │ ├─────────────────────────────────────────────────────────────────┤ │ │ │ main ──────────────────────────────────────────────────────── │ │ ↑ │ │ │ (release merge) │ │ │ │ │ develop ───────────────────────────────────────────────────── │ │ ↑ ↑ ↑ │ │ │ │ │ (PR merge) │ │ │ │ │ │ │ feature/ refactor/ fix/ │ │ xxx xxx xxx │ │ │ └─────────────────────────────────────────────────────────────────┘
Branch Naming Convention
| Type | Pattern | Example |
|---|---|---|
| Feature | | |
| Refactor | | |
| Fix | | |
| Hotfix | | |
| Release | | |
Branch Rules
- Base Branch:
(NOTdevelop
)main - Feature/Refactor/Fix: Branch from
, merge back todevelopdevelop - Hotfix: Branch from
, merge to bothmain
andmaindevelop - Release: Branch from
, merge todevelop
after QAmain
⚠️ CRITICAL: PR은 반드시
브랜치를 base로 생성해야 합니다.develop
(NOTgh pr create --base develop)--base main- main으로 잘못 머지하면 main → develop PR을 추가로 생성해야 합니다.
Commit Convention (Conventional Commits)
<type>(<scope>): <description> [optional body] [optional footer] Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Types
| Type | Description | Example |
|---|---|---|
| New feature | |
| Bug fix | |
| Code refactoring | |
| Documentation | |
| Tests | |
| Maintenance | |
| Formatting | |
| Performance | |
Scope Examples
,auth
,users
,chat
,chat_worker
,locationcharacter
,infra
,k8s
,terraformhelm
,ci
,cdpipeline
PR Procedure
1. Create Branch
# From develop branch git checkout develop git pull origin develop git checkout -b feature/chat-crud-api
2. Work & Commit
# Make changes git add . git commit -m "feat(chat): add message persistence"
3. Push & Create PR
# Push to remote git push -u origin feature/chat-crud-api # Create PR via gh CLI gh pr create --base develop --title "feat(chat): add CRUD API for messages" --body "$(cat <<'EOF' ## Summary - Add message persistence endpoints - Implement ChatRepository with PostgreSQL ## Test plan - [ ] Unit tests pass - [ ] Integration tests with DB - [ ] Manual API testing 🤖 Generated with [Claude Code](https://claude.com/claude-code) EOF )"
4. PR Review & Merge
- Wait for CI checks (GitHub Actions)
- Request review from team members
- Address review comments
- Squash and merge to
develop
PR Template
## Summary <1-3 bullet points describing changes> ## Related Issue Closes #123 ## Test plan - [ ] Unit tests pass (`pytest apps/{service}/tests/unit -v`) - [ ] Integration tests pass - [ ] Manual testing completed ## Checklist - [ ] Code follows project conventions - [ ] Tests added/updated - [ ] Documentation updated (if needed) - [ ] No breaking changes (or documented) 🤖 Generated with [Claude Code](https://claude.com/claude-code)
CI/CD Integration
GitOps 플로우
ArgoCD가
브랜치를 바라봄 (Staging 아님, Dev 환경 직접 배포)develop
PR → develop 머지 → ArgoCD auto-sync → Dev 클러스터 반영
Branches Triggering CI
| Branch | CI Trigger | Deploy Target |
|---|---|---|
| Push | (예비, 현재 미사용) |
| Push, PR | Dev (ArgoCD sync) |
| PR only | - |
| PR only | - |
| PR only | - |
Quality Gates
- Linting (ruff, black)
- Type checking (mypy)
- Unit tests (pytest)
- Security scan (SonarCloud)
Quick Reference
Common Commands
# Start new feature git checkout develop && git pull && git checkout -b feature/new-feature # Sync with develop git fetch origin develop && git rebase origin/develop # Create PR gh pr create --base develop # Check PR status gh pr status # View PR in browser gh pr view --web
Useful gh CLI Commands
# List open PRs gh pr list # Check out PR locally gh pr checkout 123 # Approve PR gh pr review --approve # Merge PR gh pr merge --squash --delete-branch
Reference Files
- Branch naming: See branch-naming.md
- Commit examples: See commit-examples.md
- Token streaming fix: See token-streaming-fix.md - Worktree + 트러블슈팅 사례
- PR templates: See
.github/PULL_REQUESTS/ - Issue templates: See
.github/ISSUE_TEMPLATE/