标签:git
# in proj2:
git remote add proj1 path/to/proj1
git fetch proj1
git merge proj1/master # or whichever branch you want to merge
操作:
这里有两个仓库:StrongWord 和 A
要求是把A仓库添加进StrongWord仓库:
1,在Strongword
目的:把A添加到到StrongWord里面的另外一个远程仓库,其实也就是在.git/config添加一个远程仓库的记录:
2,查看一下:
多出来的3个,
3,你可以合并其它任意一个
4,完毕
怎么merge 两个不同的仓库,顺带讲git rebase 怎么用
标签:git
原文地址:http://blog.csdn.net/koffuxu/article/details/44961623