惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
U
Unit 42
人人都是产品经理
人人都是产品经理
罗磊的独立博客
Recent Announcements
Recent Announcements
云风的 BLOG
云风的 BLOG
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
GbyAI
GbyAI
Blog — PlanetScale
Blog — PlanetScale
I
InfoQ
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
B
Blog RSS Feed
WordPress大学
WordPress大学
腾讯CDC
H
Help Net Security
博客园 - Franky
博客园 - 【当耐特】
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
B
Blog
Vercel News
Vercel News
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Trunk-Based Development: Your Pull Requests Are Still Too...
CodeCraft Di · 2026-04-30 · via DEV Community

Most teams don’t realize this, but their biggest bottleneck isn’t architecture, tech stack, or even legacy code.

It’s pull requests.

If you read about trunk-based development, you’ll see the same advice repeated everywhere: small changes, frequent merges, fast feedback. Sounds simple. Almost obvious.

And yet — in reality — most teams are nowhere near that.

I’ve personally seen pull requests sitting open for months. Not days. Not weeks. Months.

At one point, we had a pull request in our team that was open for more than six months.

Six.

Months.

At that point, it’s no longer a pull request. It’s a parallel universe.

Below this link you can read first article about Trunk-Based Development

https://codecraftdiary.com/2026/04/04/trunk-based-development-why-most-teams-think-they-use-it-but-dont/

The Hidden Cost of Large Pull Requests

Let’s be precise about what’s happening here.

A large pull request is not just “a bit harder to review”. It fundamentally breaks your delivery system.

Here’s what actually happens:

1. Review becomes a cognitive nightmare

When a PR has:

  • 1,000+ lines
  • multiple concerns (API, DB, UI, validation)
  • partial refactors

No one can realistically review it properly.

So what happens?

  • reviewers skim
  • they miss edge cases
  • they delay the review (“I’ll look at it later”)

And “later” turns into never.

2. Feedback loop collapses

Fast feedback is the core of modern development.

But with large PRs:

  • feedback comes late
  • feedback is vague
  • feedback is expensive to apply

Instead of:

“Fix this small thing”

You get:

“This entire approach might be wrong”

Now the author has to:

  • rethink everything
  • rework large chunks of code
  • re-request review

Cycle time explodes.

3. Merge becomes risky

The bigger the PR, the higher the risk:

  • conflicts with main branch
  • outdated assumptions
  • broken integrations

So teams hesitate.

And hesitation kills flow.

4. Work gets batched (and everything slows down)

This is the core anti-pattern.

Instead of shipping continuously, developers start batching work:

“I’ll just add one more thing before I open the PR”

Then:

“Actually, I’ll include this refactor too”

And suddenly:

  • PR grows
  • review slows
  • merge is delayed

It’s a vicious cycle.

The Real Reason Your PRs Are Too Big

Let’s be honest — this is not a tooling issue.

It’s behavioral.

Here are the real causes:

1. “I want it to be complete”

This is the most common mindset:

“I’ll open the PR when the feature is done.”

Sounds reasonable. It’s also completely wrong.

Because “done” often means:

  • multiple layers
  • edge cases
  • polish

Which leads to massive PRs.

2. Fear of breaking things

Without proper safety mechanisms (tests, feature flags), developers avoid small merges.

So they wait.

And wait.

And accumulate changes.

3. Poor slicing of work

Most developers split work like this:

  • backend PR
  • frontend PR
  • DB migration PR

Instead of:

  • vertical slices that deliver value end-to-end

This creates artificial dependencies and forces larger PRs.

4. Review culture is asynchronous and slow

If reviews take:

  • hours
  • or days

Developers adapt by batching work.

Why open a small PR if it will just sit there?

The 6-Month Pull Request Problem

Let’s go back to that real example.

A PR open for six months.

What does that actually mean?

  • The branch is completely outdated
  • The context is lost
  • The author doesn’t remember all decisions
  • The reviewers don’t understand it anymore

At that point, you have only two realistic options:

  1. Merge it blindly (high risk)
  2. Close it and start over (lost work)

Both are bad.

But the real failure happened much earlier — when the PR was allowed to grow beyond control.

How to Fix This (Practically)

This is not about theory. These are concrete practices that work.

1. Enforce a hard PR size limit
Set a rule:

Max ~300–400 lines per PR

Not as a suggestion.

As a constraint.

Why?

Because constraints force better behavior:

  • better slicing
  • fewer concerns per change
  • faster reviews

2. Merge incomplete work (safely)

This is the shift most teams struggle with.

You don’t need “finished features” to merge.

You need:

  • safe code
  • controlled exposure

Use:

  • feature flags
  • toggles
  • hidden UI states

This allows you to:

  • merge early
  • iterate safely
  1. Slice vertically, not horizontally

Instead of:

  • PR 1: database
  • PR 2: API
  • PR 3: UI

Do:

  • PR 1: minimal end-to-end functionality
  • PR 2: extend behavior
  • PR 3: polish

Each PR:

  • delivers something usable
  • is independently testable
  • is small

4. Optimize review speed (not just quality)

Set expectations:

  • PR should be reviewed within a few hours
  • not days

Ways to achieve this:

  • smaller PRs (obviously)
  • clear ownership
  • synchronous reviews when needed (pairing)

5. Accept “ugly but correct” code (temporarily)

This is uncomfortable but critical.

Sometimes the right move is:

“Merge this small, slightly imperfect change now”

Instead of:

“Wait until it’s perfectly clean”

Why?

Because flow matters more than perfection.

You can always:

  • refactor later (but don’t forget — it’s important for code cleanup)
  • improve incrementally

6. Track your actual behavior

If you want to be serious about this, measure:

  • average PR size
  • PR lifetime
  • number of merges per day

Reality check:

If your PRs:

  • live for days
  • contain hundreds/thousands of lines

You are not doing trunk-based development.

No matter what your team says.

The Real Mindset Shift

This is the uncomfortable truth:

Small pull requests are not a technical practice.
They are a discipline.

They require you to:

  • let go of “completeness”
  • embrace incremental delivery
  • prioritize flow over polish

And that’s hard.

Because it goes against how most developers naturally think about work.

Final Thought

That 6-month pull request wasn’t an exception.

It was just an extreme version of a very common problem.

Most teams are operating with:

  • oversized changes
  • slow feedback
  • delayed merges

And then they wonder why delivery feels slow.

If you fix just one thing, fix this:

Make your pull requests smaller. Radically smaller.

Everything else — faster reviews, fewer bugs, smoother delivery — follows from that.

Not the other way around.