如何合并github存储库?

时间:2012-11-30 16:22:55

标签: git github

有这个jQuery插件jQuery plugin ..有些人做了一些修改,其中一个在他们自己的github这个插件的分叉中..

我希望有一个合并这两个代码的版本:

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

由于原始存储库也在github上,所以程序有点像这样。在您最喜欢的目录中,执行:

git clone https://github.com/arshaw/fullcalendar.git fullcalendar

然后将另外两个存储库添加为遥控器:

git remote add elhigu https://github.com/elhigu/fullcalendar.git
git remote add AlbeTech https://github.com/AbleTech/fullcalendar

然后将他们的更改提取到您的本地副本:

git pull elhigu master
git pull AlbeTech master

这应该可以满足您的需求,但请注意,您可能会遇到冲突。