-1
votes
1answer
64 views

SCM for a Large Modular Code Base

I need some help designing a SCM for my codebase. The codebase is fairly complex, so first, I will try to describe it. The code base is made up of code for many different products, let's say Product1 ...
0
votes
1answer
25 views

Adding SVN library to a git repository. Hints? Tips? Do I need to make a submodule for it?

I'm making an iOS app which is in a git repository. I'd like to add the Google Objective C client library, but it's stored via SVN. What's the recommended way to add an SVN project to a git ...
0
votes
1answer
53 views

Strategy for using git-svn with submodules

I would like to use Git locally, with submodules, and be able to push/pull from SVN (The company I'm at uses SVN, and a switchover to Git is nowhere in the near future). I know git-svn doesn't support ...
2
votes
1answer
220 views

Converting from SVN to Git with submodules

We currently use subversion as our version control system, we have decided that we are moving to git. I have been having a hard time moving my subversion system with a standard layout into git. I have ...
1
vote
2answers
174 views

Import Git repository with submodules into a Subversion repository

What is the best approach for importing a Git project with submodules into a Subversion repository? Not sure if it matters, but the submodules are pointing to the Kohana core and module repositories ...
7
votes
2answers
2k views

Why are git submodules incompatible with svn externals?

There are lots of webpages out there suggesting hackish ways to make svn externals look like git submodules. I have read some accounts of what the difference is, but this doesn't seem very ...
2
votes
2answers
67 views

Creating submodules in a recently converted svn to git repo

I have just recently converted an old company svn repo which has a bunch of projects into a git repo ie. repo project-1 project-2 project..n From within this new git repo how would you ...