I imported my github project to bitbucket following this tutorial :
tutorial import github project to bitbucket
Worked great except that I want to import all my branches, so I did the :
git branch -a
and I get this as a result :
master
planB
stuffOnTheNewBranch
remotes/origin/HEAD -> origin/master
remotes/origin/master
remotes/origin/pageflipStuff
remotes/origin/planB
remotes/origin/stuffOnTheNewBranch
After pushing all, when I check on bitbucket, only master
, planB
, stuffOnTheNewBranch
are imported ... How to push all the branches?