ブランチ作成→コミット→PR作成を一括実行します。
Automates the complete Git workflow from branch creation to PR submission. Use this when you need to commit changes, push them to a new branch, and create a pull request in one streamlined process.
/plugin marketplace add 9en/dev-claude-code-plugins/plugin install 9en-gh-plugins-gh@9en/dev-claude-code-pluginsブランチ作成→コミット→PR作成を一括実行します。
[作業内容確認] → [ブランチ作成] → [コミット] → [プッシュ] → [PR作成]
# 1. 最新のmainを取得
git fetch origin main
git checkout main
git pull origin main
# 2. 新規ブランチを作成
git checkout -b <branch-name>
# 3. 変更をステージング
git add .
# 4. コミット
git commit -m "<commit-message>"
# 5. プッシュ
git push -u origin <branch-name>
# 6. PR作成
gh pr create --base main --title "<title>" --body "<body>"
# ユーザーの作業内容: "ログイン機能のバグ修正"
# ブランチ名: fix/login-bug
git checkout -b fix/login-bug
# コミット
git add .
git commit -m "fix: ログイン機能のバグを修正"
# プッシュ & PR作成
git push -u origin fix/login-bug
gh pr create --base main --title "fix: ログイン機能のバグを修正" --body "## 概要\n\nログイン機能のバグを修正しました。"