Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Most efficient way to keep a fork up-to-date

Tags:

git

I can think of a few ways to keep a fork up-to-date:

  • git pull, apply changes using a script (pull automatically merges)
  • git pull, merge (possible conflicts?)
  • git fetch
  • maybe using another branch some way?

Question: What's the most efficient way to keep a fork up-to-date?

like image 236
Samuel Shifterovich Avatar asked Dec 05 '16 21:12

Samuel Shifterovich


2 Answers

Keeping a fork up-to-date is about the original repo: you need to base your local work on top of an up-to-date image of said original repo.

Generally, in a triangular workflow, the original repo is called upstream.

So all you need to do is:

git fetch upstream
git rebase upstream/master
git push --force

That will rebase your current branch on top of an updated upstream/master, and then you can force push (provided you are the only one working on your own fork).

triangular workflow

This is very different from a pull, as it does not merge the branches from upstream to your own local branches.
Rather it replays your lcoal work on top of those branches, ensuring that a future pull request will be trivial to accept back into the original repo (fast-forward merge, as you are publishing only new commits on top of the most recent state of the upstream master branch)

like image 163
VonC Avatar answered Nov 14 '22 11:11

VonC


You can use git pull to fetch the latest changes from remote as well as merge these changes locally. This will give you the most updated version for the branch you are on currently. This should be sufficient to keep your forked branch up-to-date.

By simply doing a git fetch you will just be updating your remotely tracked branch with new changes. You will then have to implement a merge command if you want to see the new changes locally.

like image 36
ValyriA Avatar answered Nov 14 '22 11:11

ValyriA