https://martinfowler.com/articles/ship-show-ask.html

A modern branching strategy

How do you do Continuous Integration with Pull Requests?

Pull Requests have been widely adopted by many software teams. Some people love them, and some people long for the days of Continuous Integration – where you never created branches and your team put their changes together all the time.

In some ways, Pull Requests are a game changer. Code hosting tools offer fantastic code review functionality. There are loads of SaaS providers offering services that can run on your pull requests – from running your tests and checking code quality to deploying fully-fledged preview environments.

But the adoption of Pull Requests as the primary way of contributing code has created problems. We’ve lost some of the “Ready to Ship” mentality we had when we did Continuous Integration. Features-in-progress stay out of the way by delaying integration, and so we fall into the pitfalls of low-frequency integration that Continuous Integration sought to address.

Sometimes Pull Requests sit around and get stale, or we’re not sure what to work on while we wait for review. Sometimes they become bloated as we think “well, I may as well do this while I’m here.”

We also get tired of the number of Pull Requests we have to review, so we don't talk about the code anymore. We stop paying attention and we just click “Approve” or say “Looks good to me”.

Introducing Ship / Show / Ask

There’s an approach to software branching I’ve used with my teams. It’s worked really well, so I’d like to share it with you.

Every time you make a change, you choose one of three options: Ship, Show or Ask.

Ship

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/6a8ba7f3-7138-4870-b968-037682886686/Ship.png

Figure 1: Change goes straight on mainline

This feels the most like Continuous Integration. You want to make a change, so you make it directly on your mainline. When you do this, you’re not waiting for anyone to take your change to production. You’re not asking for a code review. No fuss – just make the change, with all the usual Continuous Integration techniques to make it safe.

Works great when: