1

I have the next uses cases:

Project parent v1.9

Child project 1 v1.3 (in .net)

Child project 2 v1.6 (in c++)

All child projects are in a repository in bitbucket.

I need to find a tool where I can administrate these use cases.

Any ideas??

seenukarthi
  • 8,241
  • 10
  • 47
  • 68
Mario Villanueva
  • 327
  • 3
  • 10

1 Answers1

0

To keep those exact version in sync, inside a same repository, you could use git submodules

First, create a branch at P v1.9.
You would then git submodule add CP1 (Child Project 1) to P (Parent), and git submodule add CP2 to P

That would add a folder CP1 and CP2 to P.
You can go in each subfolder, and git restore the exact version you want to have associated with P.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250