Read more

Check out a remote branch in git

Lexy
August 25, 2010Software engineer at makandra GmbH

If you would like to checkout the branch groups, you can simply say this in recent versions of Git:

git fetch origin
git checkout groups
Illustration UI/UX Design

UI/UX Design by makandra brand

We make sure that your target audience has the best possible experience with your digital product. You get:

  • Design tailored to your audience
  • Proven processes customized to your needs
  • An expert team of experienced designers
Read more Show archive.org snapshot

This will automatically track origin/groups from a local branch groups.

In older Git versions you need to say this:

git fetch origin
git checkout --track origin/groups
Posted by Lexy to makandra dev (2010-08-25 14:15)