• Skip to primary navigation
  • Skip to main content
Sal Ferrarello
  • About Sal Ferrarello
  • Speaking
  • Connect
    Twitter GitHub
You are here: Home / Dev Tips / Git warning: Pulling without specifying how to reconcile divergent branches is discouraged

Git warning: Pulling without specifying how to reconcile divergent branches is discouraged

Last updated on January 18, 2021 by Sal Ferrarello

As of Git version 2.27.0 running the command git pull will display the following message unless your Git configuration includes certain settings.

warning: Pulling without specifying how to reconcile divergent branches is
discouraged. You can squelch this message by running one of the following
commands sometime before your next pull:

  git config pull.rebase false  # merge (the default strategy)
  git config pull.rebase true   # rebase
  git config pull.ff only       # fast-forward only

You can replace "git config" with "git config --global" to set a default
preference for all repositories. You can also pass --rebase, --no-rebase,
or --ff-only on the command line to override the configured default per
invocation.

Short Explanation

Git wants us to choose how it should handle the situation where our remote branch (e.g. origin/develop) is out of sync with our local branch (develop). Many people (myself included) feel the default way Git historically handled this situation was sub-optimal however changing the default behavior is a big deal. Instead Git has made it easy to modify the behavior and added this screen to remind you that you might want to change the default.

Short Fix

The short answer is yes, we do want to change the default behavior and we can do that by running the following from the command line.

git config --global pull.ff only

This will add a line to your global Git configuration file to use the “best” approach when using git pull.

The Problem We are Solving

When working with Git you have your local branch on your computer (e.g. develop) and your remote branch (e.g. origin/develop). Your remote branch typically lives somewhere like GitHub.

You’d like to have the same commits on your local branch and your remote branch, so it looks something like this.

develop    origin/develop

cem32k     cem32k
b4d2o1     b4d2o1
abc123     abc123

(If viewing your Git branch as a list of commits like this seems unfamiliar, I suggest checking out my post on How to Improve Git Log)

Someone Else Adds a Commit

When someone else uses git push to add their commit (e.g. zyx911) to origin/develop, we get out of sync.

develop    origin/develop

           zyx911
cem32k     cem32k
b4d2o1     b4d2o1
abc123     abc123

The good news is we can bring things back in sync by running git pull. In this case, it is obvious to Git that by adding zyx911 to our commits, we’ll be in sync. This is called a fast-forward merge.

develop    origin/develop

zyx911     zyx911
cem32k     cem32k
b4d2o1     b4d2o1
abc123     abc123

The command we added above (git config --global pull.ff only) sets this to be the only kind of merge that Git should do unless we explicitly tell it otherwise.

Both Add a Commit

Imagine the situation where someone else adds a commit to the remote branch (e.g. zyx911 gets added to origin/develop) and at the same time we add a commit to our local branch (e.g. we add dg34mp to develop).

develop    origin/develop

dg34mp     zyx911
cem32k     cem32k
b4d2o1     b4d2o1
abc123     abc123

Now when we run git pull Git says, “Whoa, hold on! I can’t add the zyx911 commit to our local branch because there is an extra commit on our local branch that doesn’t exist on the remote branch!” (a.k.a. I don’t know how to handle zyx911).

Note: This is the same situation I discuss in Git failed to push some refs.

Three Ways to Handle the Situation

Create a Merge Commit

This is the historical default behavior. Git creates a new commit (e.g. 3649fc) which is a parent to both dg34mp and zyx911. Merge commits are a tremendously useful tool in Git, however they also bring with them complexity, which is why most agree that Git should not create a merge commit without the user explicitly requesting it.

Additionally, because we are merging these to different commits this is a common time to have merge conflicts.

    develop       origin/develop

    3649fc
dg34mp  zyx911    zyx911
    cem32k        cem32k
    b4d2o1        b4d2o1
    abc123        abc123

Rebase our Local Commits

Rebasing is an important Git idea that deserves an entire post of its own but in broad strokes:

Rebasing takes our local commit (dg34mp) and temporarily removes it from our local branch, which makes it an easy fast-forward merge

develop    origin/develop

zyx911     zyx911
cem32k     cem32k
b4d2o1     b4d2o1
abc123     abc123

then our commit (dg34mp) is added back to our local branch

develop         origin/develop

40931 (dg34mp)
zyx911          zyx911
cem32k          cem32k
b4d2o1          b4d2o1
abc123          abc123

however because the commit hash (dg34mp) is based on not only our changes but all the changes before it, the commit hash changes (here to 40931). This is also a time that merge conflicts are common.

Don’t Do Anything By Default

Since both creating a merge conflict and rebasing have their own complexities, we don’t want Git to do either by default. This is why we set fast-forward only with git config --global pull.ff. As long as we are only pulling in new commits, git pull works fine but if things get out of sync we get the message

fatal: Not possible to fast-forward, aborting.

Then we can explicitly tell Git to create a merge commit

git pull --merge

or rebase our changes

git pull --rebase

Global Git Configuration

When we run git config --global pull.ff it adds the following

[pull]
        ff = only

to our global Git configuration, typically found at ~/.gitconfig.

Sal Ferrarello
Sal Ferrarello (@salcode)
Sal is a PHP developer with a focus on the WordPress platform. He is a conference speaker with a background including Piano Player, Radio DJ, Magician/Juggler, Beach Photographer, and High School Math Teacher. Sal can be found professionally at WebDevStudios, where he works as a senior backend engineer.

Share this post:

TwitterFacebookLinkedInEmailReddit

Filed Under: Computing, Dev Tips, Recommendations, Solution Tagged With: Git, gitconfig

Reader Interactions

Comments

  1. Greg Fenton says

    September 26, 2020 at 11:49 am

    Great and very clear post Sal!

    Note: formatting of the last example in the section “Rebase our Local Commits” needs to be looked at.

    Reply
    • Sal Ferrarello says

      September 27, 2020 at 11:01 am

      I appreciate your comment, Greg. Thanks to you, I’ve corrected the format on the last example.

      Reply
  2. Robert Dodier says

    October 28, 2020 at 1:10 pm

    Terrific, this is very clear. It’s really important to talk about the motivations for handling different situations in addition to the mechanics of the different options. Thanks a lot!

    Reply
  3. John Cowan says

    January 11, 2021 at 9:52 am

    Thank you for this post. Clear and concise tutorial. Helped me understand this.

    Reply
  4. Craig Fisk says

    January 18, 2021 at 1:46 pm

    Thanks for the great article. I’m using git 2.30.0 on both of my Ubuntu 18.04 MATE systems, and after doing “git config –global pull.ff”, “git pull origin main” still gave the “hint” message as you indicate. Adding the “only” resolved this issue, so:
    git config –global pull.ff only
    and added
    [pull]
    ff = only
    to $HOME/.gitconfig

    Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Copyright © 2021 · Bootstrap4 Genesis on Genesis Framework · WordPress · Log in