git-workflow
SolidManage git workflows — worktree isolation, commits, merges, and pushes. Use for all substantive changes; never work directly in the main worktree.
AI & Automation 1 stars
0 forks Updated yesterday MIT
Install
Quality Score: 78/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Git Workflow
## Core Rules
- Use a worktree for all substantive changes — never work directly in the main
worktree
- Worktrees are always created for the **outermost superproject**, never a
submodule (Step 1 resolves this)
- **Initialize** every new worktree with its mise init task (Step 2d), and
**end** every worktree with full coverage — land the branch (plus any
submodule work and pointer updates), then remove it (Step 4)
- Use `merge` (not PRs) to land changes: `mise x -- mise run merge:develop` or
`mise x -- mise run merge:main`
- Never push without explicit user request — always ask after a successful
commit
- Check `no-commit-to-branch` hook in `.config/pre-commit-config.yaml` before
committing to any branch
## Caller Preferences
This command takes **no arguments** — callers parameterize its behavior through
**declared preferences in the invocation text** (e.g. `/vwf:execute`: "isolate
without asking; commit only — never merge/push"). Honor any such declared
preference: it drives the **Step 1** consent (skip the worktree prompt when
isolation is pre-declared) and the **Step 4** post-commit choice (take the
declared action, skip the prompt). Absent a declared preference, ask as each
step specifies.
## Safety Rules
**Never:**
- `--force`, `--no-verify`, `reset --hard`, force-push to `main`/`develop`
- Update git config
- Any destructive operation without explicit user request
If hooks fail during a commit: fix the issue, then create a **new commit...
Details
- Author
- virajp
- Repository
- virajp/ai-plugins
- Created
- 2 months ago
- Last Updated
- yesterday
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
git-workflow
Git recipes, worktree management, push sequences, branch verification, and conflict resolution patterns.
5 Updated 2 days ago
juan294 Code & Development Solid
git-worktree
Auto-create git worktrees for workflows. Isolate changes, merge on success, discard on failure.
24 Updated 1 weeks ago
nguyenthienthanh AI & Automation Solid
git
Git operations and worktree management
15 Updated today
jmylchreest