how to pull new git branch code example
Example 1: pull down remote branch git
git fetch origin
git checkout --track origin/<branch_name>
Example 2: "git checkout -b" example
$ git checkout -b new-branch --track origin/develop
git fetch origin
git checkout --track origin/<branch_name>
$ git checkout -b new-branch --track origin/develop