📦 Git Best Practices
コミット作成、ブランチ管理、PR作成、履歴書き換えなど、Gitの操作全般において、より効率的かつ安全な運用を実現するためのベストプラクティスを提案するSkill。
📺 まず動画で見る(YouTube)
▶ 【Claude Code完全入門】誰でも使える/Skills活用法/経営者こそ使うべき ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Use when creating commits, managing branches, opening PRs, or rewriting history. Not for non-git implementation tasks or repo-specific release policy decisions.
🇯🇵 日本人クリエイター向け解説
コミット作成、ブランチ管理、PR作成、履歴書き換えなど、Gitの操作全般において、より効率的かつ安全な運用を実現するためのベストプラクティスを提案するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o git-best-practices.zip https://jpskill.com/download/4026.zip && unzip -o git-best-practices.zip && rm git-best-practices.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/4026.zip -OutFile "$d\git-best-practices.zip"; Expand-Archive "$d\git-best-practices.zip" -DestinationPath $d -Force; ri "$d\git-best-practices.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
git-best-practices.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
git-best-practicesフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Git Best Practices の使い方を教えて
- › Git Best Practices で何ができるか具体例で見せて
- › Git Best Practices を初めて使う人向けにステップを案内して
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
[スキル名] git-best-practices
Git ベストプラクティス
常にアクティブな原則
このスキルがロードされたら、すべての Git 操作において以下の指示に従ってください。
- 行動する前に発見する — ブランチ、マージ、または PR を開く前に、リポジトリのデフォルトブランチとプロダクションブランチを特定するためにブランチの発見を実行します。
- Conventional Commits — すべてのコミットは
type(scope): description形式を使用します。 - 明示的にステージングする — ファイルを名前で追加し、意図した変更のみがコミットされるようにします。
- 共有履歴を保護する — 強制プッシュには
--force-with-leaseを使用します。強制プッシュの前にユーザーに確認します。
エージェントの Git ワークフロー
- 状態を確認する —
git statusとgit diff HEADを実行します。 - ブランチを発見する — デフォルト/現在の/(オプション)プロダクションブランチ名を特定します (ブランチの発見を参照)。
- 名前でステージングする — 各ファイルに対して
git add path/to/fileを実行します。git statusで確認します。 - Conventional Commit を作成する — オプションの本文とともに
type(scope): descriptionを作成します。 - 安全にプッシュする — デフォルトでは通常のプッシュです。履歴を書き換えた後、ユーザーの確認を得てからのみ
git push --force-with-lease origin {branch}を実行します。
チェックポイントコミット
エージェントは、長時間のタスク中に WIP チェックポイントコミットを作成し、PR の前にクリーンアップすることができます。
wip:をプレフィックスとして付けるか、標準の Conventional Commit 形式を使用します。- WIP 状態であっても、変更は論理的にグループ化された状態に保ちます。
- PR を開く前に
/rewrite-historyを実行して、クリーンな履歴を作成します。
コミット規律
- ファイルを名前で明示的にステージングします:
git add src/auth.ts src/auth.test.ts - コミットする前に
git statusでステージングされた内容を確認します。 - シークレット、
.envファイル、認証情報、および大きなバイナリをコミットに含めないでください。ステージングされたファイルが機密情報のように見える場合は、ユーザーに警告します。 - 最終的な PR 準備完了状態では、コミットごとに1つの論理的な変更をターゲットにします。
強制プッシュ
上流の変更を上書きするのを防ぐために、--force-with-lease のみを使用します。
git push --force-with-lease origin feat/my-branch
ブランチに関係なく、強制プッシュの前に必ずユーザーに確認してください。
Conventional Commits
形式: type(scope): description
件名行のルール:
- 小文字、命令形、末尾にピリオドなし
- 72文字未満
- スコープはオプションですが、明確なサブシステムが存在する場合は推奨されます。
一般的なタイプ:
| タイプ | 用途 |
|---|---|
feat |
新機能 |
fix |
バグ修正 |
docs |
ドキュメントのみ |
refactor |
動作変更なしの再構築 |
perf |
パフォーマンス改善 |
chore |
メンテナンス、依存関係、ツール |
test |
テストの追加または更新 |
ci |
CI/CD パイプラインの変更 |
build |
ビルドシステムの変更 |
style |
フォーマット、空白 (ロジック変更なし) |
コミット本文
本文はオプションです。変更が本当に自明でない場合にのみ追加してください。件名行は「何が」を伝え、本文は「なぜ」を説明します。
本文を追加する場合:
- 動機やトレードオフが自明でない場合
- 複数部分にわたる変更が箇条書きで説明すると分かりやすい場合
- 外部コンテキストが必要な場合 (リンク、課題参照、根本原因)
コミットメッセージの例については、git-examples.md を参照してください。
ブランチの発見
ブランチを作成したり PR を開いたりする前に、リポジトリのブランチトポロジを発見してください。以下のコマンドを実行し、結果を保存します。
# デフォルトブランチ (ほとんどのリポジトリの PR ターゲット)
gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name'
# 現在のブランチ
git branch --show-current
# プロダクションブランチ (デフォルトと異なる場合)
git branch -r --list 'origin/main' 'origin/master' 'origin/production'
gh が利用できない場合、またはリポジトリにリモートがない場合は、git-examples.md のフォールバックコマンドを参照してください。
発見されたブランチ名を保存し、以降のすべてのコマンドで参照してください。後続のすべてのコマンドで実際のブランチ名を使用してください。
ブランチ命名
まずリポジトリのブランチ命名規則を使用してください。規則が文書化されていない場合は、以下を使用してください。
形式: type/description-TICKET-ID
例:
feat/add-login-SEND-77fix/pool-party-stall-SEN-68chore/update-depshotfix/auth-bypass
課題が存在する場合はチケット ID を含めます。チケットがない場合は省略します。
ブランチフロー
まずリポジトリのブランチフローポリシーを使用してください。ポリシーが文書化されていない場合、一般的なベースラインは次のとおりです。
{production-branch} (プロダクションデプロイ)
└── {default-branch} (ステージング/テストネットデプロイ、PR ターゲット)
├── feat/add-feature-TICKET
├── fix/bug-description-TICKET
└── hotfix/* (ホットフィックス用のプロダクションブランチから分岐)
- 機能ブランチと修正ブランチはデフォルトブランチから開始します。
- ホットフィックスブランチはプロダクションブランチから開始します。
- リポジトリがシングルブランチフローを使用している場合を除き、PR はデフォルトブランチをターゲットとします。
- デフォルトブランチとプロダクションブランチが同じ場合、すべての PR はそのブランチを直接ターゲットとします。
マージ戦略
まずリポジトリのマージポリシーを使用してください (多くの組織で必須です)。
ポリシーが存在しない場合、以下のデフォルトが妥当です。
| PR ターゲット | 戦略 | 理由 |
|---|---|---|
| 機能 → デフォルトブランチ | Squash merge | クリーンな履歴、機能ごとに1コミット |
| デフォルト → プロダクション | Merge commit | リリース境界を保持、デプロイポイントが可視化される |
| ホットフィックス → プロダクション | Squash merge | プロダクション上の単一のアトミックな修正 |
PR ワークフロー
サイジング
恣意的な制限ではなく、実用的なサイジングを行います。PR のサイズに関係なく、各コミットは明確なストーリーを語ります。PR は一貫した単位としてレビュー可能であるべきです。レビュー担当者が変更全体を頭の中で把握できない場合は、分割を検討してください。
PR 作成
リポジトリネイティブな PR ツール (gh pr create、GitLab CLI、またはウェブ UI) を使用し、以下を含めます。
- 70文字未満の短いタイトル
- 1〜3個の箇条書きを含む要約セクション
- 箇条書きのチェックリスト形式のテスト計画
PR 前の履歴書き換え
乱雑な WIP 履歴を持つブランチの場合、/rewrite-history を使用して以下を行います。
- ブランチをバックアップします。
- ベースブランチの先端にリセットします。
- 変更をクリーンな履歴シーケンスとして再コミットします。
- バックアップとバイト単位で一致することを確認します。
- 書き換えられた履歴を強制プッシュする前にユーザーに確認します。
- バックアップブランチへのリンクとともに PR を開きます。
書き換えられた各コミットは、前のコミットに基づいて構築される、一貫したアイデアを1つ導入します。これは、機能がどのように構築されたかを読者に教えるチュートリアルのようです。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Git Best Practices
Always Active Principles
When this skill is loaded, follow these directives for all git operations:
- Discover before acting — run branch discovery to determine the repo's default and production branches before branching, merging, or opening PRs
- Conventional commits — every commit uses
type(scope): descriptionformat - Stage explicitly — add files by name so only intended changes are committed
- Protect shared history — use
--force-with-leasefor force pushes; confirm with the user before any force push
Agent Git Workflow
- Check state — run
git statusandgit diff HEAD - Discover branches — identify default/current/(optional) production branch names (see Branch Discovery)
- Stage by name —
git add path/to/filefor each file; verify withgit status - Write a conventional commit —
type(scope): descriptionwith optional body - Push safely — regular push by default;
git push --force-with-lease origin {branch}only for rewritten history after user confirmation
Checkpoint Commits
Agents may create WIP checkpoint commits during long-running tasks, cleaned up before PR.
- Prefix with
wip:or use standard conventional commit format - Keep changes logically grouped even in WIP state
- Run
/rewrite-historybefore opening a PR to craft a clean narrative
Commit Discipline
- Stage files explicitly by name:
git add src/auth.ts src/auth.test.ts - Verify staged content with
git statusbefore committing - Keep secrets,
.envfiles, credentials, and large binaries out of commits — warn the user if staged files look sensitive - Target one logical change per commit in final PR-ready state
Force Push
Use --force-with-lease exclusively to protect against overwriting upstream changes:
git push --force-with-lease origin feat/my-branch
Always confirm with the user before any force push, regardless of branch.
Conventional Commits
Format: type(scope): description
Subject line rules:
- Lowercase, imperative mood, no trailing period
- Under 72 characters
- Scope is optional but preferred when a clear subsystem exists
Common types:
| Type | Use for |
|---|---|
feat |
New functionality |
fix |
Bug fix |
docs |
Documentation only |
refactor |
Restructuring without behavior change |
perf |
Performance improvement |
chore |
Maintenance, dependencies, tooling |
test |
Adding or updating tests |
ci |
CI/CD pipeline changes |
build |
Build system changes |
style |
Formatting, whitespace (no logic change) |
Commit Bodies
Body is optional — only add one when the change is genuinely non-obvious. The subject line carries the "what"; the body explains "why."
Add a body when:
- The motivation or tradeoff is non-obvious
- Multi-part changes benefit from a bullet list
- External context is needed (links, issue references, root cause)
See git-examples.md for commit message examples.
Branch Discovery
Before branching or opening a PR, discover the repo's branch topology. Run these commands and store the results:
# Default branch (PR target for most repos)
gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name'
# Current branch
git branch --show-current
# Production branch (if different from default)
git branch -r --list 'origin/main' 'origin/master' 'origin/production'
If gh is unavailable or the repo has no remote, see the fallback commands in git-examples.md.
Store the discovered branch name and reference it throughout. Use the actual branch name in all subsequent commands.
Branch Naming
Use repository branch naming conventions first. If no convention is documented, use:
Format: type/description-TICKET-ID
Examples:
feat/add-login-SEND-77fix/pool-party-stall-SEN-68chore/update-depshotfix/auth-bypass
Include the ticket ID when an issue exists. Omit when there is no ticket.
Branch Flow
Use repository branch flow policy first. If policy is undocumented, a common baseline is:
{production-branch} (production deploys)
└── {default-branch} (staging/testnet deploys, PR target)
├── feat/add-feature-TICKET
├── fix/bug-description-TICKET
└── hotfix/* (branches off production branch for hotfixes)
- Feature and fix branches start from the default branch
- Hotfix branches start from the production branch
- PRs target the default branch unless the repo uses a single-branch flow
- When default branch and production branch are the same, all PRs target that branch directly
Merge Strategy
Use repository merge policy first (required in many organizations).
If no policy exists, these defaults are reasonable:
| PR target | Strategy | Rationale |
|---|---|---|
| Feature → default branch | Squash merge | Clean history, one commit per feature |
| Default → production | Merge commit | Preserves the release boundary; visible deploy points |
| Hotfix → production | Squash merge | Single atomic fix on production |
PR Workflow
Sizing
Pragmatic sizing over arbitrary limits. Each commit tells a clear story regardless of PR size. A PR should be reviewable as a coherent unit — if a reviewer cannot hold the full change in their head, consider splitting.
PR Creation
Use repo-native PR tooling (gh pr create, GitLab CLI, or web UI) with:
- Short title under 70 characters
- Summary section with 1-3 bullet points
- Test plan as a bulleted checklist
History Rewriting Before PR
For branches with messy WIP history, use /rewrite-history to:
- Backup the branch
- Reset to the base branch tip
- Recommit changes as a clean narrative sequence
- Verify byte-for-byte match with backup
- Confirm with the user before force-pushing rewritten history
- Open PR with link to backup branch
Each rewritten commit introduces one coherent idea, building on the previous — like a tutorial teaching the reader how the feature was built.