从一个git仓库提交代码到另一个仓库¶
实际开发中,将repro_a仓库中的branch_a独立成为一个新的仓库repro_b。主要依靠git remote
实现。
1. 把当前代码提交到另一个远程git仓库¶
假如仓库repo_a当前位于branch_a,要求将branch_a的整个数据(包括提交历史)全部提取出来,并建立一个新的仓库repo_b。这里假设仓库repo_b已经被建立。
git remote add
基本语法如下。name和url是必须的。
(1). 将仓库repo_b的URL添加到工作仓库的remote。¶
(origin_repo_b:自己起的名字,只要不与现有的remote名重复即可)(git@server_ip:/path/repo_b.git:repo_b的远程路径)
(2). 将代码推送到远程repo_b。¶
(origin_repo_b:远程仓库repo_b的名字)(branch_a:仓库repo_a的的branch_a分支)
(3). 克隆仓库repo_b,检查是否push成功。¶
2. 将一份相同的代码提交到多个不同的git托管服务器(多个git仓库)¶
方法非常相似,多使用到了命令git remote set-url --add [--push] <name> <newurl>
假设在远程的git服务器上又新增了一个仓库repo_c,现在要求repo_b、repo_c提交的代码必须一致。