Git 合并两个不同的仓库 Posted on 2019-03-13 Edited on 2023-12-28 Disqus: why?Github上看到了被Fork的仓库,因为种种原因pull requests主仓库没有接受,并且还往后更新了.需要在本地合并两个仓库. how?123456git clone https://github.com/A/git.gitgit remote add other https://github.com/B/git.git#git remote add -t remote-branch remote-name remote-urlgit fetch other master #git branch -agit merge other/master