2021-04-06
1182
#web design
Simohamed Marhraoui
41537
Apr 6, 2021 â‹… 4 min read

Using stacked pull requests in GitHub

Simohamed Marhraoui Vue and React developer | Linux enthusiast | Interested in FOSS

Recent posts:

profit center vs. cost center: How company structure affects engineering

Profit center vs. cost center: How company structure affects engineering

Examine the difference between profit vs. cost center organizations, and the pros and cons these bring for the engineering team.

Marie Starck
May 15, 2025 â‹… 4 min read
How to pass a TypeScript function as a parameter

How to pass a TypeScript function as a parameter

Explore how to pass functions and structured objects as parameters in TypeScript, including use cases, syntax, and practical scenarios.

Kealan Parr
May 15, 2025 â‹… 10 min read
API Docs Made Easy With Docusaurus

Create fast, modern API docs using Docusaurus

Why API documentation matters, recent trends in the space, and how to build great docs from scratch using Docusaurus, step by step.

Frank Joseph
May 15, 2025 â‹… 6 min read
A checklist for mastering Expo SDK 53

A checklist for mastering Expo SDK 53

Get up to speed on Expo SDK 53, which brings with it a wealth of new and improved updates for the React Native ecosystem.

Andrew Baisden
May 15, 2025 â‹… 17 min read
View all posts

3 Replies to "Using stacked pull requests in GitHub"

  1. In your example to break up a large PR, you suggest:

    $ git checkout migrate-to-firebase
    $ git reset –soft develop
    $ git restore –staged .

    Is that not the same thing as:
    $ git checkout migrate-to-firebase
    $ git reset develop

    Thanks.

Leave a Reply