git fetch develop branch code example
Example 1: git fetch remote branch
git checkout --track origin/branch_name
Example 2: fetch a specific branch
git fetch <remote_rep> <remote_branch>:<local_branch>
git checkout --track origin/branch_name
git fetch <remote_rep> <remote_branch>:<local_branch>