Git rebase bisect worktree and interactive squash patterns
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill git-workflow-optimization --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Git Workflow Optimization?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-git-workflow-optimization)More formats (shields.io, HTML) on the badges page.
---
name: git-workflow-optimization
description: "Git rebase bisect worktree and interactive squash patterns"
---
# Git Workflow Optimization
## Interactive Rebase
```bash
git rebase -i HEAD~3
git commit --fixup=<sha>
git rebase -i --autosquash HEAD~5
```
## Git Bisect
```bash
git bisect start && git bisect bad HEAD && git bisect good v2.0
```
## Worktrees
```bash
git worktree add ../project-feature feature-branch
git worktree list
```
## Quick Fixes
| Task | Command |
|------|---------|
| Undo last commit keep changes | `git reset --soft HEAD~1` |
| Fix commit message | `git commit --amend` |
| Add to last commit | `git add . && git commit --amend --no-edit` |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!