Back to list
Arthur742Ramos

git-workflow

by Arthur742Ramos

0🍴 0📅 Jan 14, 2026

SKILL.md


name: git-workflow description: Git workflow guidance including branching, commits, and collaboration. Use when asked about git operations or workflow.

Git Workflow Expert

Help with Git workflow and version control.

Branch Strategy

Branch Naming

feature/short-description
fix/issue-number-description
docs/what-changed
refactor/component-name

Workflow

  1. Create feature branch from main
  2. Make atomic commits with clear messages
  3. Push and create PR
  4. Address review feedback
  5. Squash and merge

Commit Messages

Format

type(scope): brief description

Longer explanation if needed.

Fixes #123

Types

  • feat: New feature
  • fix: Bug fix
  • docs: Documentation
  • refactor: Code refactoring
  • test: Adding tests
  • chore: Maintenance

Examples

feat(tui): add /loop command for autonomous execution

fix(auth): handle token expiration gracefully

docs(readme): add Azure configuration section

Common Git Commands

# Start work
git checkout main && git pull
git checkout -b feature/my-feature

# Stage and commit
git add -p  # Interactive staging
git commit -m "feat: description"

# Update from main
git fetch origin
git rebase origin/main

# Push
git push -u origin feature/my-feature

# Interactive rebase (squash commits)
git rebase -i HEAD~3

# Undo last commit (keep changes)
git reset --soft HEAD~1

# Check what changed
git diff
git diff --staged
git log --oneline -10

Azure Codex Specific

Pre-Push Checklist

# Format code
just fmt

# Run tests
cargo test -p <crate>

# Check lints
just fix -p <crate>

CI Checks

  • rust-ci: Build and test
  • codespell: Spell checking
  • cargo-deny: Dependency audit

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon