Pulling a github project into another github project

I have a github project that uses other repositories in github. (I used jQuery, backbone.js, underscore.js in my project) I want to pull these repositions from github into my repo (possibly with their history). And from time to time I want to update these codes from my github repositories. But I still want to transfer them in my repo. Is it possible.

+4
source share
1 answer

Take a look at git -submodule .

+6
source

Source: https://habr.com/ru/post/1335760/


All Articles