✳flâneur — a map of the web's best reading
The Git Commands I Run Before Reading Any Code
piechowski.io · 849 words · saved by 1 readers
Five git commands that tell you where a codebase hurts before you open a single file. Churn hotspots, bus factor, bug clusters, and crisis patterns.
The Git Commands I Run Before Reading Any Code The first thing I usually do when I pick up a new codebase isn't opening the code. It's opening a terminal and running a handful of git commands. Before I look at a single file, the commit history gives me a diagnostic picture of the project: who built it, where the problems cluster, whether the team is shipping with confidence or tiptoeing around land mines. What Changes the Most git log --format = format: --name-only --since = "1 year ago" | sort | uniq -c | sort -nr | head -20 I run this from app/ or src/ , not the repo root. Lockfiles,
Explore this link on the map →saved by
related reading
- Best practices for Claude Code - Claude Code Docsanthropic.com
- Visualizing a Codebasegithubnext.com
- A Bunch of Programming Advice I'd Give To Myself 15 Years Ago | Marcus' Blogmbuffett.com
- llm-wiki · GitHubgist.github.com
- Claude Code Hit Escape Velocity in January. So I Used Claude Code to /Catch-Up.zerotopete.com
- Compare · Surfer-Org/Old-Protocol · GitHubgithub.com
- GitHub - conventional-changelog/conventional-changelog: Generate changelogs and release notes from a project's commit messages and metadata. · GitHubgithub.com
- OMBD#21: Master Git Diff With These Not-So-Known Commands | by Jon Portella | ITNEXTjportella93.medium.com
- Git Guides - git push · GitHubgithub.com
- GitHub - ccusage/ccusage: npx ccusage · GitHubgithub.com
- GitHub - ourzora/v3 · GitHubgithub.com
- cchistory: Tracking Claude Code System Prompt and Tool Changesmariozechner.at