I want to start using git-svn for projects that use the central SVN repository. The problem is that we use windows and that the SVN project uses external resources to be able to reuse some code in two different projects. On a Unix system, we would use soft links, but since we were stuck in windows, we decided to use external tools as a workaround for limitations in Windows XP. If you have a better solution for this, it would be more than nice to hear that! The svn structure is as follows:
branch tag trunk -web --views ---External to commonFiles -admin --views ---External to commonFiles -commonFiles
Is it possible that I can use git-svn, and if so, how can I do this?
Edit I have been looking for a good solution for a long time, but after writing this post I started to think how much this really relates to svn: externals. If I use git svn, I will get this
branch tag trunk -web --views ---commonFiles (empty folder since externals didn't work) -admin --views ---commonFiles (empty folder since externals didn't work) -commonFiles
Since I have a commonFiles folder in git, can I use the same technique as in svn in git? To link empty commonFiles folders to commonFiles supported with git?
source share