同步2个远程GIT存储库

时间:2016-08-02 13:59:04

标签: git

我有一个与remote1同步的存储库repo1。到目前为止,我有300次提交。

我在remote2上创建了另一个存储库repo2,到目前为止有4次提交。这些是完全不同的提交。

我想使用repo1并将更改推送到remote1和remote2。我怎么能这样做?

当我推送到remote2时,它应该覆盖来自remote1的所有提交。

1 个答案:

答案 0 :(得分:1)

随便运行

git push remote1 master
git push remote2 master

签名

  

git push <remote repository> <branch to push>

如果由于历史记录不同而遇到错误,可以使用以下替换强制推送

git push -f remote1 master
git push -f remote2 master

注意:-f用于强制