我正在使用以下步骤将存储库从gitolite迁移到bitbucket(本地):
1)从gitolite克隆现有的存储库:
git clone git@gitolite.mydomain.com:/hello-world
2)为bitbucket添加新的遥控器:
git remote add origin-bb ssh://git@bitbucket.mydomain.com:7999/test/hello-world.git
3)将所有分支推送到新的bitbucket origin:
git push origin-bb --all
4)将所有标签推送到新的bitbucket原点
git push origin-bb --tags
推送成功完成且没有错误。但是,当我使用git ls-remote -h origin
和git ls-remote -h origin-bb
比较两个来源之间的引用时,原始远程已为所有分支列出了refs / heads,而新远程仅列出了refs / heads / master:
git ls-remote -h origin-bb
0079dbeb885c9d88ac200d533930e2e72feb3627 refs/heads/master
git ls-remote -h origin
3215eca2b034d4ee8406bca9b648808fb489c110 refs/heads/hot_fixes
5cfec9cab26d2805064b076d701e53e12ff59c51 refs/heads/develop
61e7efadb6c071f25007dda55ce8c9b73802e1c3 refs/heads/experiment
0079dbeb885c9d88ac200d533930e2e72feb3627 refs/heads/master
这是预期的行为,还是在推送到新遥控器以确保包含所有引用时是否需要其他选项?
答案 0 :(得分:1)
将git ls-remote origin
与git ls-remote origin-bb
进行比较,但与git ls-remote .
进行比较,即使用当前回购。我确定你会发现你只有1个分支master
,这就是git push --all
所推动的。
首先,您需要将所有分支提取到本地仓库,因为git clone
克隆只有1个分支:
git fetch origin hot_fixes:hot_fixes
git fetch origin experiment:experiment
现在重复git push --all origin-bb
。