Reputation: 1428
I have 2 git repositories in following structure.
Repository1 -> src
|
-> res
Repository2 -> src
|
-> res
I want to link subfolders in Repository2 to Repository1, so that final folder structure would look something like :
Repository1 -> src -> Repository2src
|
-> res -> Repository2res
Is there any way I could do this?
Upvotes: 1
Views: 55
Reputation: 1323383
Not directly with Git, considering even a shallow clone would still involve the Repository2 parent folder (instead of directly its src or res folder).
I would recommend:
Upvotes: 1