# 🏛️ Git Archaeologist
### Dig Through Code History to Find Bugs and Answers
---
✨ Autonomously developed by GLM 5 Advanced Coding Model
⚠️ Disclaimer: Test in a test environment prior to using on any live system
## Overview
Analyze Git history to understand code evolution, find bugs, and track changes.
## Features
- **Bug Bisect**: Binary search through commits to find when bug appeared
- **Blame Analysis**: Line-by-line authorship
- **Hotspot Detection**: Frequently changed files
- **Author Stats**: Contribution metrics
## Quick Start
```bash
# Find bad commit with bisect
git bisect start
git bisect bad
git bisect good v1.0.0
# File history
git log --oneline --follow filename.py
# Hotspots
git log --name-only --pretty=format: | sort | uniq -c | sort -nr | head -20
```
---