1

If I make a new branch off of the master and want to be pulling updates from the remote master and not the remote new branch, how do I set that?

mangocaptain
  • 1,435
  • 1
  • 19
  • 31
  • 1
    Possible duplicate of [How do I change the remote a git branch is tracking?](http://stackoverflow.com/questions/4878249/how-do-i-change-the-remote-a-git-branch-is-tracking) – gdziadkiewicz Aug 05 '16 at 19:51

2 Answers2

0

This should do the job.

git branch branch_name -u your_new_remote/branch_name 
Jonathan Leffler
  • 730,956
  • 141
  • 904
  • 1,278
0

This one should work too

git checkout the_branch_you_want

sebastienvg
  • 303
  • 1
  • 7