this is the workflow I currently use for my svn projects (I never use svn branches, and some projects are actively worked on by other people as well):
git svn fetch
which might take hours. Also create a 'build' branch.git clone srv://project.git, git checkout build
followed by git update-refs ..., git svn fetch
to restore the link to the svn repository git push build
to the server and trigger a build in Hudson for that branchgit checkout master, git merge build, git svn dcommit, git push, git checkout build, git rebase master, git push build
Enter svn externals. I tried every script here already but all of them fail. My externals are setup like this:
/path/to/x x
/path/to/y/z y/z
/path/to/a/b.file a/b.file
and the scripts do things like trying to create /path/to/x
in the root of the filesystem and git svn fetch /path/to/x
. Also the single files seem to cause more problems. (subquestion 1: what is the svn:externals format these scripts were written for then?)
It doesn't seem to hard modifying one of the scripts to handle my situation and replicate the directory structure I'm after correctly, but then I'm left with a major problem: if I change a file in both x and y/z directories, I don't see a way to join this into a single svn commit and that is one of the reasons I started using git in the first place.
Hence the question: is there a way I can replicate the above workflow, using only parts of a certain svn repository, in such a way that I can do svn dcommit in the root? I'd prefer a ready-to-use solution that works both on linux and windows.
edit I quickly hacked through one of the scripts I found and made it replicating the directory structure of the svn externals. I cannot clone single files though, here's output:
git svn clone -r HEAD srv://svn/repo/path/to/projects.sln
Initialized empty Git repository in xxx/projects.sln/.git/
Invalid filesystem path syntax: REPORT request failed on '/svn/repo/!svn/vcc/default':
Cannot replace a directory from within at yyy/git/libexec/git-core/git-svn line 5114
subquestion 2: is it not possible fetching a single file through git svn?
Unfortunately, svn's externals are quite flexible. I've run across a number of scripts that treat them as <path> <url>, but <url> <path> is also allowed. So I think some of the scripts are just broken in that regard.
To answer your second subquestion: no. 'git svn fetch' needs to operate on a subtree of Subversion's repo, but it needs to be something it can treat like a branch. The only thing map well into that paradigm is a directory (trunk/, for example). FWIW, Bazaar and Mercurial suffer here too. At the end of the day, Subversion is just a versioned file system, whereas Git has a first class concept of a branch. This is one of those mismatches getting in the way. :-(