Reputation: 675
I have big project which consist of many smaller projects, files, packages, iso's, etc. and I'd like to keep these files in some control system perhaps Bazaar
.
The problem is some of projects are already under git or bazaar. I need not to change structure of projects/files.
Any idea, help?
Upvotes: 1
Views: 113
Reputation: 13643
There are a few options for combining repositories from different version control systems and tools that can help with that:
Upvotes: 0
Reputation: 4909
Keep each existing small projects / packages in bazaar/git. Import other non-versioned into bazaar/git. Choose the best structure for you : each one in its own repository, or a shared repository with every thing inside.
Then, create an new project under bazaar/git with links to each of your projects. This link feature is call EXTERNAL.
BAZAAR Externals
http://doc.bazaar.canonical.com/plugins/en/externals-plugin.html
GIT Externals (compared to SVN)
SVN:externals equivalent in GIT?
Upvotes: 1