我们有一个来自客户端的bitbucket repo和一个本地git repo。我们是否可以使用单一的本地工作空间同时管理两个回购?
答案 0 :(得分:1)
如果我理解你的问题,你可以做到。但不是直接将单个仓库指向多个托管服务。但你可以反映你的回购。以下plugin bitbucket可以将您的回购镜像反映为github。你也可以通过cli the git
command来完成。
示例:
git clone --mirror https://github.com/exampleuser/repository-to-mirror.git
# Make a bare mirrored clone of the repository
cd repository-to-mirror.git
git remote set-url --push origin https://github.com/exampleuser/mirrored
# Set the push location to your mirror
您可以将此命令放在cron
中或手动执行以更新镜像。
git push --mirror
答案 1 :(得分:0)
您可以在Github存储库中添加多个远程分支。但在这种情况下,每次进行逐个更新时都需要推送存储库。