git-workflowlisted
Install: claude install-skill Gaku52/software-engineering-universe
# Git Workflow Skill
## 📋 目次
1. [概要](#概要)
2. [いつ使うか](#いつ使うか)
3. [ブランチ戦略](#ブランチ戦略)
4. [コミット規約](#コミット規約)
5. [PR管理](#pr管理)
6. [よくある問題](#よくある問題)
7. [Agent連携](#agent連携)
---
## 概要
このSkillは、Gitを使った開発ワークフローの全てをカバーします:
- ✅ ブランチ戦略の選択と運用
- ✅ コミットメッセージ規約(Conventional Commits)
- ✅ PR作成・レビュー・マージプロセス
- ✅ コンフリクト解決手法
- ✅ Git hooks活用
- ✅ リベース vs マージの判断基準
- ✅ 過去の失敗パターンと対策
## 📚 公式ドキュメント・参考リソース
**このガイドで学べること**: ブランチ戦略の選択、コミット規約、PR運用、コンフリクト解決、Git hooks活用
**公式で確認すべきこと**: 最新のGit機能、GitHub/GitLab新機能、セキュリティベストプラクティス
### 主要な公式ドキュメント
- **[Git Documentation](https://git-scm.com/doc)** - Git公式ドキュメント
- [Git Book](https://git-scm.com/book/en/v2)
- [Reference Manual](https://git-scm.com/docs)
- **[GitHub Documentation](https://docs.github.com/)** - GitHub公式ガイド
- [Pull Requests](https://docs.github.com/en/pull-requests)
- [Actions](https://docs.github.com/en/actions)
- **[Conventional Commits](https://www.conventionalcommits.org/)** - コミットメッセージ規約
- [Specification](https://www.conventionalcommits.org/en/v1.0.0/)
- **[GitLab Documentation](https://docs.gitlab.com/)** - GitLab公式ドキュメント
- [Git Workflows](https://about.gitlab.com/topics/version-control/what-is-gitlab-flow/)
### 関連リソース
- **[Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials)** - Git学習リソース
- **[Oh Shit, Git!?!](https://ohshitgit.com/)** - Git問題解決ガイド
- **[Git Flight Rules](https://github.com/k88hudson/git-flight-rules)** - Git緊急対応ガイド
---
## いつ使うか
### 自動的に参照されるケース
- 新しいブランチを作成する時
- コミットを作成する時
- PRを作成する時
- マ