29 Pull, but you have local work
Problem: You want to pull changes from upstream, but you have done some new work locally since the last time you pulled. This often comes up because what you actually want to do is push, but Git won’t let you until you first incorporate the upstream changes.
For the sake of simplicity, assume we’re dealing with the main
branch and the remote is called origin
.
Recent commit history of origin/main
:
Recent commit history of the local main
branch:
or maybe
Your goal: get commit C
into your local branch, while retaining the work in commit D
or your uncommitted changes.
- Local state is
A--B--(uncommitted changes)
: You could usegit stash
. Or you could just make a commit to simplify your life (see next bullet). - Local state is
A--B--D
: You can get toA--B--C--D
orA--B--(something that includes C and D)
. - Local state is
A--B--D--(uncommitted changes)
: You could just make a commit – a new one or amendD
– to simplify your life (see previous bullet).
We prioritize simple approaches that are good for early Git use, but mention nicer long-term alternatives.
29.1 Local work is uncommitted
Remote state is A--B--C
.
Local state is A--B--(uncommitted changes)
.
29.1.1 Happy simple cases
There are two happy scenarios, in which git pull
will “just work”:
- You’ve introduced completely new files that don’t exist in the remote branch and, therefore, cannot possibly have conflicting changes. You’re in luck! You can just
git pull
. - The files affected by your local work have ZERO overlap with the files affected by the changes you need to pull from the remote. You’re also in luck! You can just
git pull
.
Summary of these happy git pull
scenarios:
Remote: A--B--C
Local before 'git pull': A--B--(uncommitted changes)
Local after 'git pull': A--B--C--(uncommitted changes)
What has actually happened here is that git pull
resulted in a fast-forward merge, i.e. we placed commit C
right on the end of your history. This would also be the case in the simpler situation where recent local history was just A--B
, i.e. you had not added any local work since the last sync up with origin/main
.
29.1.2 git stash
works, sometimes
If your changes affect a file (foo.R
in the example below) that has also been changed in commit C
, you cannot git pull
. It doesn’t hurt to try, but you will fail and it will look something like this:
jenny@2015-mbp ethel $ git pull
remote: Enumerating objects: 5, done.
remote: Counting objects: 100% (5/5), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 1), reused 1 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
From github.com:jennybc/ethel
db046b4..2d33a6f main -> origin/main
Updating db046b4..2d33a6f
error: Your local changes to the following files would be overwritten by merge:
foo.R
Please commit your changes or stash them before you merge.
Aborting
Now what? First, you must safeguard your local changes by either stashing or committing them. (I personally would choose to commit and execute a workflow described in 29.2.)
I am not a big fan of git stash
; I think it’s usually better to take every possible chance to solidify your skills around core concepts and operations, e.g., make a commit, possibly in a branch. But if you want to use git stash
, this opportunity is as good as it gets.
git stash
is a way to temporarily store some changes to get them out of the way. Now you can do something else, without a lot of fuss. In our case, “do something else” is to get the upstream changes with a nice, simple git pull
. Then you reapply and delete the stash and pick up where you left off.
For more details about stashing, I recommend
- The stashing coverage in the “Filesystem interactions” chapter of Git in Practice (book website or read on GitHub)
- 7.3 Git Tools - Stashing and Cleaning in Pro Git.
Here’s the best case scenario for “stash, pull, unstash” in the example above:
And here’s the output from our example:
jenny@2015-mbp ethel $ git stash save
Saved working directory and index state WIP on main: db046b4 Merge branch 'main'of github.com:jennybc/ethel
jenny@2015-mbp ethel $ git pull
Updating db046b4..2d33a6f
Fast-forward
foo.R | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
jenny@2015-mbp ethel $ git stash pop
Auto-merging foo.R
On branch main
Your branch is up-to-date with 'origin/main'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: foo.R
no changes added to commit (use "git add" and/or "git commit -a")
Dropped refs/stash@{0} (012c4dcd3a4c3af6757c4c3ca99a9eaeff1eb2a4)
That is what success looks like. You’ve achieved this:
Remote: A--B--C
Local before: A--B--(uncommitted changes)
Local after: A--B--C--(uncommitted changes)
As above, we have just enjoyed a fast-forward merge, made possible by temporarily stashing then unstashing the uncommitted local changes.
29.1.3 git stash
with conflicts
If your local changes have some overlap with changes you are pulling, you will, instead get a merge conflict from git stash pop
. Now you have some remedial work to do. In this case, you have gained nothing by using git stash
in the first place, which explains my general lack of enthusiasm for git stash
.
Here’s how to execute the git stash
workflow in our example, in the face of conflicts (based on this Stack Overflow answer):
jenny@2015-mbp ethel $ git stash save
Saved working directory and index state WIP on main: 2d33a6f Back to 5
jenny@2015-mbp ethel $ git pull
Updating 2d33a6f..1eddf9e
Fast-forward
foo.R | 1 +
1 file changed, 1 insertion(+)
jenny@2015-mbp ethel $ git stash pop
Auto-merging foo.R
CONFLICT (content): Merge conflict in foo.R
At this point, you must resolve the merge conflict (future link). Literally, at each locus of conflict, pick one version or the other (upstream or stashed) or create a hybrid yourself. Remove the all the markers inserted to demarcate the conflicts. Save.
Since git stash pop
did not go smoothly, we need to manually reset (future link) and delete the stash to finish.
jenny@2015-mbp ethel $ git reset
Unstaged changes after reset:
M foo.R
jenny@2015-mbp ethel $ git stash drop
Dropped refs/stash@{0} (7928db50288e9b4d934803b6b451a000fd7242ed)
Phew, we are done. We’ve achieved this:
Remote: A--B--C
Local before: A--B--(uncommitted changes)
Local after: A--B--C--(uncommitted changes*)
The asterisk on uncommitted changes*
indicates that your uncommitted changes might now reflect adjustments made when you resolved the conflicts.
29.2 Local work is committed
Remote state is A--B--C
.
Local state is A--B--D
.
29.2.1 Pull (fetch and merge)
The simplest option is to fetch the commits from upstream and merge them, which is what git pull
does. This is a good option if you’re new to Git. It leads to a messier history, but when you are new, this is the least of your worries. Merge, be happy, and carry on.
Here is the best case, no-merge-conflicts version of git pull
:
jenny@2015-mbp ethel $ git pull
< YOU WILL PROBABLY BE KICKED INTO AN EDITOR HERE RE: MERGE COMMIT MESSAGE! >
Merge made by the 'recursive' strategy.
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Depending on your version of Git, your config, and your use of a GUI, you might be required to confirm/edit a commit message for the merge commit.
Or what if things don’t go this smoothly? If commit C
(on the remote) and commit D
(local) have changes to the same parts of one or more files, Git may not be able to automatically merge and you will get merge conflicts. It will look something like this:
jenny@2015-mbp ethel $ git pull
Auto-merging foo.R
CONFLICT (content): Merge conflict in foo.R
Automatic merge failed; fix conflicts and then commit the result.
You must resolve these conflicts (future link). Literally, at each locus of conflict, pick one version or the other (upstream or local) or create a hybrid yourself. Remove the all the markers inserted to demarcate the conflicts. Save.
Mark the affected file foo.R
as resolved via git add
and make an explicit git commit
to finalize this merge.
jenny@2015-mbp ethel $ git add foo.R
jenny@2015-mbp ethel $ git commit
[main 20b297b] Merge branch 'main' of github.com:jennybc/ethel
Again, do not be surprised if, during git commit
, you find yourself in an editor, confirming/editing the commit message for the merge commit.
We’ve achieved this:
29.2.2 Pull and rebase
git pull --rebase
creates a nicer history than git pull
when integrating local and remote commits. It avoids a merge commit, so the history is less cluttered and is linear. It can make merge conflicts more onerous to resolve, which is why I still recommend git pull
as the entry-level solution.
Here is the best case, no-merge-conflicts version of git pull --rebase
:
jenny@2015-mbp ethel $ git pull --rebase
First, rewinding head to replay your work on top of it...
Applying: Take max
Notice that you were NOT kicked into an editor to fiddle with the commit message for the merge commit, because there is no merge commit! This is the beauty of rebasing.
We’ve achieved this:
It is as if we pulled the upstream work in commit C
, then did the local work embodied in commit D
. We have no cluttery merge commits and a linear history. Nice!
The bad news: As with plain vanilla git pull
, it is still possible to get merge conflicts with git pull --rebase
. If you have multiple local commits, you can even find yourself resolving conflicts over and over, as these commits are sequentially replayed. Hence this is a better fit for more experienced Git users and in situations where conflicts are unlikely (those tend to be correlated, actually).
At this point, if you try to do git pull --rebase
and get bogged down in merge conflicts, I recommend git rebase --abort
to back out. For now, just pursue a more straightforward strategy.
29.3 Other approaches
There are many more ways to handle this situation, which you can discover and explore as you gain experience and start to care more about the history. We sketch some ideas here.
29.3.1 Use a temporary branch for local work
Recall:
Remote state is A--B--C
.
Local state is A--B--(uncommitted changes)
.
This is an alternative to the stash workflow that has the advantage of giving you practice with Git techniques that are more generally useful. It also leads to a nice history.
Create a new, temporary branch and commit your uncommitted changes there. Checkout main
and git pull
to get changes from upstream. You now need to recover the work from the commit in the temporary branch. Options:
- Merge the temporary branch into
main
. - Cherry pick the commit from the temporary branch into
main
.
In either case, it is still possible you will need to deal with merge conflicts.
In either case, if you felt forced to commit before you were ready or to accept an ugly merge commit, you can either do a mixed reset to “uncommit” but keep the changes on main
or keep amending until you are satisfied with the commit.
29.4 Some local work is committed, some is not
This is an awkward hybrid situation that can be handled with a combination of strategies seen above: make a pragmatic commit on main
or a temporary branch. Integrate the upstream and local changes in main
. If you aren’t happy with the final pragmatic commit (which only exists locally), reset or amend until you are.