Commit Push Pr
Commit staged changes, push to remote, and create a pull request
Context
- Current branch: !
git branch --show-current - Default branch: !
git remote show origin 2>/dev/null | grep 'HEAD branch' | cut -d' ' -f5 || echo "main" - Git status: !
git status --short - Staged diff: !
git diff --cached - Unstaged diff: !
git diff - Commits ahead of origin: !
git log @{u}..HEAD --oneline 2>/dev/null || echo "No upstream branch" - Recent commits for style: !
git log --oneline -5
Task
Execute the full git workflow:
- Commit: If there are staged changes, create a conventional commit
- Push: Push the current branch to origin (set upstream if needed)
- PR: Create a pull request using
gh pr create- Auto-generate title from commits
- Include a summary of changes in the PR body
- Link any related issues mentioned in commits
If any step fails, stop and report the issue.
$ARGUMENTS