The issue has been solved
by default larges diffs are not shown. If a PR contains many large diffs, one has to go over them one by one and there is a risk to miss something in a code review.
It would be great to have a button at the top "load all diffs".

Just curious: when do you need to check those large diffs? For me, those are usually auto-generated files that I can safely skip. What is your scenario?
posted by sgabler over 7 years ago
@sgabler a feature branch can sometimes have many files changed drastically
posted by yakov116 over 7 years ago
this happens to me also for regular diffs, esp when the PR also contains a refactoring.
posted by monperrus over 7 years ago
I think GitHub had something like this the first time they've stopped rendering large diffs, but they've removed it. It was putting too much load for them to render them.
posted by hkdobrev over 7 years ago
➡️ This should follow #821, #991 and #1042
posted by bfred-it about 7 years ago
Thumbs up on this... in particular it's frustrating that I do a painstaking code review, and the biggest file in the patch gets collapsed like this so that the author doesn't even notice all my comments in there as they leaf through. I'd suggest that diffs with comments be opened/loaded by default!
posted by grgustaf almost 7 years ago
No default, GitHub hid them because large diffs are heavy on their servers.
posted by bfred-it almost 7 years ago
+1 for a button at the top to "load all diffs". An additional possible use case is having to search for all occurrences of a particular string/function/etc in the diff, and hiding the large diffs hides some/all of these occurrences.
posted by vchong almost 7 years ago
Anybody knows of any progress regarding this feature?
posted by leventov over 6 years ago
posted by bfred-it over 6 years ago 
@issuehunt has funded $40.00 to this issue.
posted by IssueHuntBot almost 6 years ago
I used this snippet in my console to see how well it would perform.
document.querySelectorAll('[aria-label="Display the rich diff"]').forEach(button => {
button.click();
});
The result... It performed sort of poorly with about ~100 backstop references in one PR loading their diff all at once, but it was certainly a lot faster than clicking all the diff buttons. 😄
posted by BillGeoghegan over 5 years ago
Cool! Any way to embed this in a GreaseMonkey/TamperMonkey script?
posted by monperrus over 5 years ago
FWIW I have this issue on my team almost daily (games team) and I wrote some hacky JS to click all the buttons. Just press Ctrl+Shift+I in Chrome (Inspect) and run this in the console:
var buttons = document.getElementsByClassName('load-diff-button');
for(var i = 0; i < buttons.length; i++)
buttons[i].click();

It'll take a bit, but it'll click all of them for ya. No more going crazy clicking buttons.
posted by jm991 over 5 years ago
Excellent, thanks a lot! Will that be activated by default?
posted by monperrus over 5 years ago
It's not a default but you can click on any "Load diff" while holding the alt
key, and all the collapsed diffs will be loaded — as long as they appear in the dom at that time (huge PRs may be paginated so you might find more "Load diff"s later)
posted by fregante over 5 years ago
@sindresorhus has rewarded $36.00 to @notlmn. See it on IssueHunt
- :moneybag: Total deposit: $40.00
- :tada: Repository reward(0%): $0.00
- :wrench: Service fee(10%): $4.00
posted by issuehunt-app[bot] over 5 years ago
based on jm991's answer, I made it into a one liner:
Array.from(document.getElementsByClassName('load-diff-button')).map(button => button.click())
posted by aryehbeitz about 5 years ago
One more stuff: document.querySelectorAll('.load-diff-button').forEach(node => node.click())
Source
posted by jumasheff about 4 years ago