← スキル一覧に戻る

git-workflow
by tatat
⭐ 1🍴 0📅 2026年1月5日
SKILL.md
name: git-workflow description: Manage Git branches, commits, and pull requests following best practices
Git Workflow
Manage Git operations and follow branching best practices.
Capabilities
- Create and manage feature branches
- Write meaningful commit messages
- Handle merge conflicts
- Create and review pull requests
Branch Naming
feature/ - New features (feature/add-user-auth)
bugfix/ - Bug fixes (bugfix/fix-login-error)
hotfix/ - Urgent production fixes (hotfix/security-patch)
release/ - Release preparation (release/v1.2.0)
Commit Message Format
<type>(<scope>): <subject>
<body>
<footer>
Types
feat: New featurefix: Bug fixdocs: Documentationrefactor: Code refactoringtest: Adding testschore: Maintenance
Example
feat(auth): add OAuth2 login support
- Implement Google OAuth2 provider
- Add token refresh mechanism
- Store tokens securely in session
Closes #123
Common Workflows
Feature Branch
git checkout -b feature/new-feature
# ... make changes ...
git add .
git commit -m "feat: add new feature"
git push -u origin feature/new-feature
# Create PR
Sync with Main
git checkout main
git pull origin main
git checkout feature/my-feature
git rebase main
PR Checklist
- Tests pass
- Code reviewed
- Documentation updated
- No merge conflicts
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です