Git:如何添加一个远程,合并到主存储库的子文件夹中?

时间:2012-10-09 08:10:20

标签: git codeigniter github

我克隆了codeigniter存储库https://github.com/EllisLab/CodeIgniter,它特别创建了应用程序和系统文件夹。

应用程序文件夹包含子文件夹,库和第三方,这些都是现在感兴趣的。

我想克隆这个存储库:https://github.com/iamfiscus/Codeigniter-DOMPDF,它在自己的根目录中有库和第三方文件夹。

有没有办法在我的codeigniter存储库中为Codeigniter-DOMPDF添加一个新的远程,它会将文件和文件夹复制到正确的位置?

提前致谢

1 个答案:

答案 0 :(得分:0)

git remote add dompdf git://github.com/iamfiscus/Codeigniter-DOMPDF.git
git pull dompdf master

使用第一个语句(命名为“dompdf”)创建另一个遥控器。 然后,从dompdf repo中将你想要的分支(master?)拉到你的分支。