git-history-detective
Installation
SKILL.md
Git History Detective
Find when bugs were introduced and understand code evolution.
When to Use
- Finding when a bug was introduced
- Understanding why code was changed
- Finding who last modified a line
- Tracking down a regression
- Searching for commits by content
Quick Reference
| Task | Command |
|---|---|
| Who changed this line? | git blame <file> |
| Find commit by message | git log --grep="keyword" |
| Find commit by code change | git log -S "code" |
Related skills