I created a feature branch using SourceTree and git flow (pressing buttons). Then I tried to clone these branches into another local copy of the repo, but I cannot get these branches locally anymore. For instance if I issue:
git branch -v -a, I see this:
gmmo@DESKTOP-GIMBJM0 MINGW64 /C/Dogwood (develop)
$ git branch -v -a
* develop de5e2f2 Updated to Build 4.1.6.37
master 0aa9613 Release 4.1.6.37
remotes/origin/HEAD -> origin/master
remotes/origin/develop de5e2f2 Updated to Build 4.1.6.37
remotes/origin/feature/cleanups ef035e9 Added alert dialog
remotes/origin/master 0aa9613 Release 4.1.6.37
so the remotes/* were created by git flow. I only created develop and master manually
but how do I clone all the remotes back to my local drive easily?
I tried
git fetch
but not sure what it did, since if I issue
git branch
I only see on my drive the two main branches.
* develop
master
gmmo@DESKTOP-GIMBJM0 MINGW64 /C/Dogwood (develop)
Is there an easy way to clone all these branches, without re-cloning the entire repo?
thx!