← スキル一覧に戻る

git-workflow
by Arthur742Ramos
⭐ 0🍴 0📅 2026年1月14日
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
- Create feature branch from
main - Make atomic commits with clear messages
- Push and create PR
- Address review feedback
- Squash and merge
Commit Messages
Format
type(scope): brief description
Longer explanation if needed.
Fixes #123
Types
feat: New featurefix: Bug fixdocs: Documentationrefactor: Code refactoringtest: Adding testschore: 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 testcodespell: Spell checkingcargo-deny: Dependency audit
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です