Settings

Theme

Ask HN: What do you use for code reviews?

1 points by muzani a day ago · 1 comment · 1 min read


I've been reviewing PRs on GitHub for a few years now and it feels primitive. For one, looking at diffs alone makes it hard to spot issues like modifying a function signature breaking the function on another file.

Are there any useful tools suited for code review?

convexly a day ago

I've started just running git diff --stat first and reading the most-changed files in full instead of only looking at diff hunks. The surrounding context matters way more than the change itself and GitHub actively hides it.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection