Complete workflow: commit, push, and create Pull Request
Automates git commit, push, and GitHub Pull Request creation workflow.
/plugin marketplace add notedit/happy-coding-agent/plugin install notedit-happy-coding-agent@notedit/happy-coding-agentOptional PR title or target branchgit/Complete git workflow from local changes to Pull Request.
Actions:
git status - check for changesgit branch --show-current - get current branchgit rev-parse --abbrev-ref @{u}If uncommitted changes exist:
/git:commit workflowActions:
git ls-remote --heads origin <branch>git push -u origin <branch>git pushgit pull --rebase)Actions:
$ARGUMENTS)git log main..<branch> --oneline## Summary
- Key changes description
## Changes
- List based on commits
## Testing
- How to verify
gh pr create --title "<title>" --body "<body>" --base <target>
| Situation | Action |
|---|---|
No gh CLI | Provide manual instructions |
| Push rejected | Suggest git pull --rebase |
| On main branch | Ask to create feature branch first |