git-workflow
コードのコミット、プルリクエスト(PR)の作成、ブランチの管理、Gitコンフリクトの解決を行う際に使用します。git commit、git push、git status、git diff、git stash、git revert、cherry-pick、マージコンフリクト、プルリクエスト、PR、PRの作成、スクイッシュマージ、コンベンショナルコミット、ブランチ、フィーチャーブランチ、gh pr、git log、リベース、upstream、origin、ステージングファイル、git addなどのコマンドやアクションをトリガーとして動作します。
description の原文を見る
Use when committing code, creating PRs, managing branches, or resolving git conflicts. Triggers on git commit, git push, git status, git diff, git stash, git revert, cherry-pick, merge conflict, pull request, PR, create PR, squash merge, conventional commit, branch, feature branch, gh pr, git log, rebase, upstream, origin, stage files, git add.
SKILL.md 本文
Git ワークフロー
コミット規約
type(scope): subject (max 72 chars)
- bullet body for non-trivial changes
Co-Authored-By: Claude <noreply@anthropic.com>
タイプ: feat、fix、chore、refactor、test、docs、perf
スコープ: プロジェクトに適したスコープを使用してください(プロジェクトの CLAUDE.md を確認してください)
ブランチ戦略
main— 本番環境、常にデプロイ可能feat/description— 機能ブランチfix/description— バグ修正ブランチ
コマンド
| タスク | コマンド |
|---|---|
| ステータス確認 | git status |
| 特定ファイルをステージング | git add file1 file2 (安全のため git add . は使用しないこと) |
| コミット | git commit -m "type(scope): message" |
| プッシュ | `git push -u origin branch-n |
...
詳細情報
- 作者
- george11642
- ライセンス
- 不明
- 最終更新
- 2026/3/24
Source: https://github.com/george11642/george-plugins / ライセンス: 未指定