How can I pull all the git branch of my repository.
I tried this and this question's few answers, but doesn't seem to do the job for me.
There are three branches, but when I do
git branch It only shows the master branch.
git branch -a gives this output
* master origin/HEAD origin/development origin/feature1 origin/master remotes/origin/HEAD -> origin/master remotes/origin/development remotes/origin/feature1 remotes/origin/master So, I am unable to checkout to feature1 branch and hence cannot check the code residing at the feature1
Please help