jpskill.com
🛠️ 開発・MCP コミュニティ

git

Git workflow management including branch validation, commit conventions, PR preparation, and repository health checks.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o git.zip https://jpskill.com/download/17654.zip && unzip -o git.zip && rm git.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17654.zip -OutFile "$d\git.zip"; Expand-Archive "$d\git.zip" -DestinationPath $d -Force; ri "$d\git.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して git.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → git フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Git ワークフロー Skill

ブランチの検証、コミット規約、PR の準備、リポジトリの健全性チェックを含む Git ワークフロー管理。

有効化

キーワードによって自動的に有効化されます: git, branch, commit, pull request, PR, merge, rebase, workflow, conventional commits, branch strategy

ワークフロー

ブランチ管理

  • branch.md: ブランチの作成、検証、および命名規則
  • status.md: リポジトリのステータスと健全性チェック

コミット管理

  • commit.md: Conventional commit メッセージの準備

PR ワークフロー

  • pr-prepare.md: Pull request の説明生成
  • pr-check.md: PR の検証とチェックリスト

コンテキストファイル

  • conventional-commits.md: コミットメッセージのフォーマット標準
  • branch-strategies.md: ブランチの命名とワークフローパターン

コマンド

# ブランチのステータスを確認
git branch --show-current
git status

# ブランチ名の検証
# ブランチのフォーマット: {type}/{descriptive-slug}
# Types: feat, fix, docs, refactor, perf, test, chore, hotfix

# Conventional commit の作成
git commit -m "$(cat <<'EOF'
{type}({scope}): {description}

{body}

{footer}
EOF
)"

Semantic Release マッピング

Branch Prefix Commit Type Version Impact
feat/ feat: Minor (0.X.0)
fix/ fix: Patch (0.0.X)
docs/ docs: No release
refactor/ refactor: No release
perf/ perf: Patch (0.0.X)
test/ test: No release
chore/ chore: No release
hotfix/ fix: Patch (0.0.X)
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Git Workflow Skill

Git workflow management including branch validation, commit conventions, PR preparation, and repository health checks.

Activation

Auto-activates on keywords: git, branch, commit, pull request, PR, merge, rebase, workflow, conventional commits, branch strategy

Workflows

Branch Management

  • branch.md: Branch creation, validation, and naming conventions
  • status.md: Repository status and health checks

Commit Management

  • commit.md: Conventional commit message preparation

PR Workflow

  • pr-prepare.md: Pull request description generation
  • pr-check.md: PR validation and checklist

Context Files

  • conventional-commits.md: Commit message format standards
  • branch-strategies.md: Branch naming and workflow patterns

Commands

# Check branch status
git branch --show-current
git status

# Validate branch naming
# Branch format: {type}/{descriptive-slug}
# Types: feat, fix, docs, refactor, perf, test, chore, hotfix

# Create conventional commit
git commit -m "$(cat <<'EOF'
{type}({scope}): {description}

{body}

{footer}
EOF
)"

Semantic Release Mapping

Branch Prefix Commit Type Version Impact
feat/ feat: Minor (0.X.0)
fix/ fix: Patch (0.0.X)
docs/ docs: No release
refactor/ refactor: No release
perf/ perf: Patch (0.0.X)
test/ test: No release
chore/ chore: No release
hotfix/ fix: Patch (0.0.X)