将github项目导入bitbucket

时间:2013-03-25 09:09:19

标签: github bitbucket

按照本教程,我将github项目导入了bitbucket:

tutorial import github project to bitbucket

工作得很好,除了我想导入我的所有分支,所以我做了:

git branch -a

我得到了这个结果:

master
planB
stuffOnTheNewBranch
remotes/origin/HEAD -> origin/master
remotes/origin/master
remotes/origin/pageflipStuff
remotes/origin/planB
remotes/origin/stuffOnTheNewBranch

推送全部内容后,当我检查bitbucket时,只导入masterplanBstuffOnTheNewBranch ...如何推送所有分支?

1 个答案:

答案 0 :(得分:1)

您将推送所有本地分支,而不是remotes命名空间中声明的分支。

如果要推送来自远程{{​​1}}的所有分支,则必须先为每个origin分支创建一个本地分支。
为此,请参阅“Track all remote git branches as local branches”。