Git: Fetch a Remote Branch

When collaborating with colleagues, or even when you're just using an open source library, you'll often need to fetch a branch from a remote repository using Git.

The "base case" to fetch a branch is fairly simple, but like with many other Git operations, it can become quite confusing when other constraints are introduced and you need to start using one of the many options available. In this article I'll try and shed some light on the commands that need to be run and options that are commonly used.

Generally, you'll want to run this sequence:

$ git fetch <remote-repo> <remote-branch>:<local-branch>
$ git checkout <local-branch>

The fetch command will retrieve the remote branch you're interested in and all related objects and references, storing it in a new local branch that you specified by the argument <local-branch>.

Once everything has been downloaded from the remote repo you can then check it out to actually inspect and play around with the code.

If you only have one remote repo then you can omit all of the arguments to git fetch, which will retrieve all branches and updates, and then run git checkout <branch-name> since all remote branches are already on your system.

Given how fetch works, the example command above will retrieve all of the code in the branch you're interested in but it won't affect any of your local branches since nothing is merged with fetch.

Often times you'll want your new local branch to track the remote one, which is helpful for easily pulling and pushing changes. To do this, you should use the --track option with the checkout command, which simultaneously checks out the branch and tracks it with the remote branch. Here is what that would look like:

$ git checkout --track <remote-repo>/<remote-branch>

This will create a local branch of the same name as the remote one.

If you want to checkout the remote branch to a local one, but with a different name, then you need to include the -b option to create the new local branch:

$ git checkout --track -b <local-branch> <remote-repo>/<remote-branch>
Free eBook: Git Essentials

Check out our hands-on, practical guide to learning Git, with best-practices, industry-accepted standards, and included cheat sheet. Stop Googling Git commands and actually learn it!

In practice, it'll look something like this:

$ git checkout --track -b fix-144 origin/bug-144
Branch fix-144 set up to track remote branch bug-144 from origin.
Switched to a new branch 'fix-144'

To verify your new branch is tracking the remote branch, run the branch command with the -vv option:

$ git branch -vv
* fix-144 0774548 [origin/bug-144] Fix #144
  master  dc538f6 [origin/master] 4.16.4

If you are interested in learning about how Git's code works, check out the Initial Commit project.

Last Updated: June 11th, 2019
Was this article helpful?

Improve your dev skills!

Get tutorials, guides, and dev jobs in your inbox.

No spam ever. Unsubscribe at any time. Read our Privacy Policy.

Free
Course

Git Essentials: Developer's Guide to Git

# git

Git Essentials: Developer's Guide to Git is a course for all developers, beginner to advanced, and written to get you up to speed with the...

David Landup
François Dupire
Jovana Ninkovic
Details

Make Clarity from Data - Quickly Learn Data Visualization with Python

Learn the landscape of Data Visualization tools in Python - work with Seaborn, Plotly, and Bokeh, and excel in Matplotlib!

From simple plot types to ridge plots, surface plots and spectrograms - understand your data and learn to draw conclusions from it.

© 2013-2024 Stack Abuse. All rights reserved.

AboutDisclosurePrivacyTerms