Issue
I have repo in bitbucket. it has 2 branches master and Branch9_Artiflex
but when I clone this repo to my local repo via source tree (clone-clone in source tree) i’m able to see only master branch.
Create new branch Branch9_Artiflex on my local machine and pull all data from remote Branch9_Artiflex doesn’t work because they have different history of commits
but my remote repo has 2 branches
Solution
Try
git fetch
. This would fetch any missed remote branch to local repository (assuming there’s no other problem).git checkout Branch9_Artiflex
. Now you will be switched into a local/Branch9_Artiflex which is newly created with the latest changes of origin/Branch9_Artiflex. :))
Answered By – Supun Wijerathne
This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0