if you see this error message when trying to git checkout a branch
You need to do
git fetch --all
and this will pull down all the branches from origin. Then you can checkout your branch from upstream. (ie. on origin, in the cloud)
You need to do
git fetch --all
and this will pull down all the branches from origin. Then you can checkout your branch from upstream. (ie. on origin, in the cloud)