想把git的远端仓库迁移到另外一个新的仓库,如何完整迁移(包含所有的分支,而不是仅仅master)?
使用下面这种方式克隆裸版本库然后push只有master分支,请问各位大虾有没有什么简单方法能一次把仓库里的所有分支都clone过去(远端仓库分支比较多)。
git clone --bare git://github.com/username/project.git
git push --mirror git@gitcafe.com/username/newproject.git
想把git的远端仓库迁移到另外一个新的仓库,如何完整迁移(包含所有的分支,而不是仅仅master)?
使用下面这种方式克隆裸版本库然后push只有master分支,请问各位大虾有没有什么简单方法能一次把仓库里的所有分支都clone过去(远端仓库分支比较多)。
git clone --bare git://github.com/username/project.git
git push --mirror git@gitcafe.com/username/newproject.git
git clone git://github.com/username/project.git
git push origin
试试
另外,如果是把github的一个仓库移到github另一个账号或小组下,可以用fork
2 回答1.2k 阅读✓ 已解决
3 回答1.8k 阅读
2 回答1.2k 阅读
1 回答1.1k 阅读
2 回答954 阅读
770 阅读
1 回答429 阅读
镜像克隆:
然后推送镜像:
或者推送新建remote再推送: