簡體   English   中英

如何合並github存儲庫?

[英]How to merge github repositories?

有這個 jQuery 插件jQuery 插件.. 有些人在他們自己的這個插件的 github 分支中做了一些修改..

我想要一個合並這兩個代碼的版本:

謝謝你的幫助。

由於原始存儲庫也在 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

這應該給你你需要的東西,但要注意你可能會遇到沖突。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM