views:

209

answers:

1

We use Subversion locally, and we're working on a project that uses a fork of Fluent NHibernate, which is hosted on Github.

I'd like it set up so that a single svn checkout will retrieve everything necessary to build the project, but maintain the ability to fetch HEAD updates from github.

Is there any way I can pull code from the Git repository as though it was an svn:external dependency? Can I just check the .git folder into our Subversion repository and just run git fetch when I need to, then svn commit the results?

+2  A: 

http://github.com/blog/626-announcing-svn-support says

$ svn checkout http://svn.github.com/USER/PROJECT.git

works. So use that URL for your svn:externals.

ndim