July 2018
Intermediate to advanced
354 pages
10h 57m
English
You can also add a remote to an existing branch, which is very handy when you realize that you actually wanted a remote tracking branch but forgot to add the tracking information while creating the branch:
$ git checkout -b remoteBugFix2 2e0d17 Switched to a new branch 'remoteBugFix2'
$ git branch --set-upstream-to origin/stable-3.2 Branch remoteBugFix2 set up to track remote branch stable-3.2 from origin.
Read now
Unlock full access