- 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
717 B
717 B
Use git bisect to find the exact commit that introduced a bug through binary search.
Steps
- Identify a known good state and a known bad state:
- Start the bisect session:
- For each step git presents:
- When bisect identifies the culprit commit:
- End the bisect session:
git bisect reset. - Create a fix based on the identified commit.
- 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.