remote branches git code example
Example 1: git bash upstream branch change
git branch --set-upstream-to=origin/branch
Example 2: pull down remote branch git
git fetch origin
git checkout --track origin/<branch_name>
Example 3: git bash upstream branch change
git config --edit