Files
Rohit Ghumare c3f43d8b61 Expand toolkit to 135 agents, 120 plugins, 796 total files
- Add 60 new agents across all 10 categories (75 -> 135)
- Add 95 new plugins with command files (25 -> 120)
- Update all agents to use model: opus
- Update README with complete plugin/agent tables
- Update marketplace.json with all 120 plugins
2026-02-04 21:08:28 +00:00

31 lines
717 B
Markdown

Use git bisect to find the exact commit that introduced a bug through binary search.
## Steps
1. Identify a known good state and a known bad state:
2. Start the bisect session:
3. For each step git presents:
4. When bisect identifies the culprit commit:
5. End the bisect session: `git bisect reset`.
6. Create a fix based on the identified commit.
7. Document the bisect result with the commit hash and explanation.
## Format
```
Bisect Result:
First Bad Commit: <hash>
Author: <name>
Date: <date>
```
## Rules
- Always reset bisect when done to return to the original branch.
- Automate the test when possible: `git bisect run <test-command>`.
- If a commit cannot be tested, use `git bisect skip`.