git
SolidGit operations and worktree management
AI & Automation 15 stars
3 forks Updated today MIT
Install
Quality Score: 81/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Git Mode
**Recommended model tier:** balanced (sonnet) - this skill performs straightforward operations
Expert git operations including worktree management for parallel work.
## Commit Guidelines
### Message Format
```
<type>: <short description>
[optional body]
```
Types: `feat`, `fix`, `refactor`, `docs`, `test`, `chore`
### Commit Process
1. Check status: `git status`
2. Review diff: `git diff`
3. Stage specific files (not `git add .`)
4. Write descriptive message
5. Never skip hooks unless explicitly asked
## Worktree Management
### Create Worktree
```bash
# For feature work
git worktree add ../feature-branch -b feature/name
# For parallel tasks
git worktree add ../aide-worktrees/task-1 -b aide/task-1
```
### List Worktrees
```bash
git worktree list
```
### Remove Worktree
```bash
git worktree remove ../feature-branch
git branch -d feature/name # if merged
```
## Common Operations
### Feature Branch Workflow
```bash
git checkout -b feature/name
# ... work ...
git add <specific-files>
git commit -m "feat: add feature"
git push -u origin feature/name
```
### Rebase onto Main
```bash
git fetch origin
git rebase origin/main
# resolve conflicts if any
git push --force-with-lease
```
### Cherry-Pick
```bash
git cherry-pick <commit-hash>
```
### Stash
```bash
git stash push -m "description"
git stash list
git stash pop
```
## Safety Rules
**Never run without explicit user request:**
- `git push --force` (use `--force-with-lease` if needed)
- `git reset --ha...
Details
- Author
- jmylchreest
- Repository
- jmylchreest/aide
- Created
- 5 months ago
- Last Updated
- today
- Language
- Go
- License
- MIT
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
git-mastery
Advanced Git: rebase, bisect, reflog, cherry-pick, worktrees, LFS. Triggers: rebase, bisect, cherry-pick, reflog, force push, merge conflict, worktree.
161 Updated today
softspark AI & Automation Listed
git-workflow
Git recipes, worktree management, push sequences, branch verification, and conflict resolution patterns.
5 Updated 2 days ago
juan294 AI & Automation Solid
git-workflow
Manage git workflows — worktree isolation, commits, merges, and pushes. Use for all substantive changes; never work directly in the main worktree.
1 Updated yesterday
virajp