[git-users] Re: What is the best technique to split the code between repos?

2010-09-14 Thread Marek Wywiał
In my work I use python/eggs, and for develop few eggs together i'm using buildout and develop-eggs to make it together. But it's specified to python/eggs situation. On 14 Wrz, 00:09, ksamdev ksam...@gmail.com wrote: Hi, I have code that can be split into 3 parts: A, B and C. In fact, I

Re: [git-users] Re: What is the best technique to split the code between repos?

2010-09-14 Thread Samvel
Thanks for the solution. Unfortunately, it works with Python code only since this approach (as I understood) is based on the way Python imports modules into each other. I am writing the code in C++. sincerely, Sam. On Sep 14, 2010, at 4:04 AM, Marek Wywiał wrote: In my work I use

[git-users] Re: What is the best technique to split the code between repos?

2010-09-13 Thread ksamdev
Thanks, Joe. The idea is interesting but imagine then what repository would look like: At least 3 shared branches. Developing code always in branches and never come back to the master. On Sep 13, 5:43 pm, Joe Hassick ehass...@gmail.com wrote: This might not be the *best* way to approach this,