When you work with GIT, you might have multiple remote branches for various reasons such as to distinguish releases, new feature developments...etc. So, you need to checkout those remote branches and need to track on those.
After pulling from master branch the execute the below command with your remote branch name.
git checkout --track -b remote_branch_name origin/remote_branch_name
No comments:
Post a Comment