Reputation: 9761
(New to Git and Github)
Hi,
For a project that i'm developing i am depending on a project that needs to be adapted. While the source of the project are available for download, it sounds like it is not available on SVCS repository such as Git or SVN.
Hence, I was wondering how in that context shall i aim at updating my fork. Can i just download the new source every time (in a separate folder*) and try to update my local Git repository of that project, from that folder* ?
What should be the right workflow for that ?
Many thanks,
M
Upvotes: 0
Views: 30
Reputation: 291
You will be managing your own dependencies.
If the source of your dependency is unavailable, I recommend doing it this way:
You can track the changes in that dependency project separately. This is useful if you use that dependency on multiple projects.
Upvotes: 1