npx claudepluginhub automata-network/claude-plugins --plugin git-workflowSave the user's work and push to remote. **Don't allow commits on main/master branches** - tell them to use /start-work first. 1. Show what files changed 2. Review the changes and create a descriptive commit message based on what actually changed - Use conventional commit format: `feat:`, `fix:`, `refactor:`, `docs:`, `style:`, `chore:` - Be specific and accurate - No emojis in commit messages 3. Stage and commit meaningfully (not just `git add -A` - be selective if needed) 4. Determine the main branch (main or master) and sync with it: `git fetch origin <main-branch> && git reba...
Save the user's work and push to remote.
Don't allow commits on main/master branches - tell them to use /start-work first.
feat:, fix:, refactor:, docs:, style:, chore:git add -A - be selective if needed)git fetch origin <main-branch> && git rebase origin/<main-branch>git push origin <branch> --force-with-leaseIf rebase fails with conflicts:
git rebase --abortgit push origin <branch>Use heredoc format for commit messages to handle multi-line properly.