1

有这个 jQuery 插件jQuery 插件.. 有些人在他们自己的 github fork 这个插件中做了一些修改。

我想要一个合并了这两个代码的版本:

谢谢你的帮助。

4

1 回答 1

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

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

于 2012-11-30T16:25:39.173 回答