Git Product home page Git Product logo

git-chain's Introduction

Git Chain

Tool to rebase multiple Git branches based on the previous one.

What does Git Chain do?

If you're working on a larger feature that you want to ship in smaller, easier reviewable pull requests, there's a big chance that you're creating separate branches for each of them. If the changes don't depend on each other โ€“ congratulations ๐ŸŽ‰! You can simply base all branches on the master branch and work on them and merge without interference.

But if your second branch depends on changes in the first and your third branch on changes in the second you'll end up doing a lot of manual rebases in case one of your base branches changes (e.g. because you addressed a comment in a review).

Git Chain can help you with automating this task. You can specify a chain of branches and rebase them all with a single command: git chain rebase.

Requirements

  • Git (of course)
  • System Ruby (/usr/bin/ruby -v >= 2.3.7)

Installation

$ git clone https://github.com/Shopify/git-chain /usr/local/share/git-chain # Or any folder you see fit
$ ln -sv /usr/local/share/git-chain/bin/git-chain /usr/local/bin/ # Or any location in your PATH

$ git chain # Should now work

Demo

Demo recording

Example

Let's have a look at an example. Imagine the following feature: You want to add a new database table (pull request 1), add a model using the table (pull request 2) and build a user interface for editing records (pull request 2).

At the beginning you'll have this nice clean git history (git log --oneline --all --graph, branch names in parentheses):

* e7888f9 (HEAD -> feature-ui) feature-ui.2
* a743802 (feature-model) feature-model.1
* 9cc4914 (feature-database) feature-database.1
* f6ba0e9 (master) master.1

You continue work on your branches, your colleagues merge their changes into the master and after a while the git history looks like this:

* 56b953a (feature-model) feature-model.2
| * e7888f9 (HEAD -> feature-ui) feature-ui.2
| * 14090bb feature-ui.1
|/  
* a743802 feature-model.1
| * 8c46072 (feature-database) feature-database.2
|/  
* 9cc4914 feature-database.1
| * fdca13e (master) master.2
|/  
* f6ba0e9 master.1

Getting back to the linear git history requires you to manually rebase all branches on top of each other, i.e the database branch onto master, the model branch onto database and the ui branch on top of model.

Let's automate this using Git Chain.

Setting up a chain

Git Chain first needs to learn about the intended branch order. We call this a 'branch chain'. You can create one using the git chain command.

$ git chain setup -c awesome-feature master feature-database feature-model feature-ui
Setting up chain awesome-feature

The name of the chain can be specified using the -c option. The first argument (in this case master) is the name of base branch that we want the chain to be rebased onto in the future.

This setup step only needs to be done once per chain.

Rebasing a chain

You can now rebase all branches in one go:

$ git chain rebase
Rebasing the following branches: ["master", "feature-database", "feature-model", "feature-ui"]

Git Chain detects the current chain based on the branch you're currently on (a branch can only be part of one chain). You can specify a chain explicitly by using the -c option you already saw during setup.

$ git checkout master
$ git chain rebase   
Current branch 'master' is not in a chain.
$ git chain rebase -c awesome-feature
Rebasing the following branches: ["master", "feature-database", "feature-model", "feature-ui"]

After that you'll end up with a clean history:

* 7974771 (HEAD -> feature-ui) feature-ui.2
* 1427391 feature-ui.1
* 9877787 (feature-model) feature-model.2
* 3ad1096 feature-model.1
* 8e333d6 (feature-database) feature-database.2
* 00ac4d1 feature-database.1
* fdca13e (master) master.2
* f6ba0e9 master.1

Handling conflicts

Of course, not everything will be as easy as in this idealized case. You'll certainly end up in situations where the rebase operations won't apply cleanly and you need to resolve merge conflicts. Git Chain stops when a rebase fails and leaves the repository at that state. You'll have to manually resolve the conflict, finish the current rebase and invoke git chain rebase again to continue.

Let's look at another example which contains conflicting changes.

* 97637af (a) a.2 (conflicting with b)
| * 953b860 (c) c.1
| * 34a2c98 (b) b.1
|/  
* 8d9b8fd a.1
* 0d3fd86 (HEAD -> master) master.1

The rebase of branch a onto master will work but b will have a conflict when rebased on a.

$ git chain rebase
Rebasing the following branches: ["master", "a", "b", "c"]
Cannot merge b onto a. Fix the rebase and run 'git chain rebase' again. 
...

[...resolving the conflict...]
$ git rebase --continue
Successfully rebased and updated refs/heads/b.
$ git chain rebase
Rebasing the following branches: ["master", "a", "b", "c"]

Pushing chains to GitHub pull requests

GitHub supports setting a base branch of a pull request via the user interface. You'll need to do this for all branches in a chain manually for now.

Edit a pull request:

Pull request header

Setting the base branch:

Edit pull request base

Once this is done and all remotes are set you can push all branches in a chain using git chain push.

git-chain's People

Contributors

lavoiesl avatar robinbrandt avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.