Only import particular subdirectories from svn using subgit?

Joseph Smith February 2, 2014

I have a standard svn layout, but I don't want everything mapped to git. I want something like this:

trunk/a:refs/heads/master/a;trunk/b:refs/heads/master/b

(this assumes there is a 'trunk/c' that is not mapped)

Is this possible? Perhaps by abusing the 'branches' field?

1 answer

1 accepted

0 votes
Answer accepted
Semyon Vadishev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 2, 2014

Hi Joseph,

As far as I understand, trunk/a, trunk/b and trunk/c are regular directories within trunk branch, is that correct?

It makes sense to map Subversion branches and tags (but not subdirectories) into Git refs as only branches and tags carry proper copy and merge information. So, I'd recommend you to use standard repository layout instead:

trunk = trunk:refs/heads/master

branches = branches/*:refs/heads/*

tags = tags/*:refs/tags/*

As to c directory, it's still possible to ignore it with experimental skip feature. Unfortunately, there are no UI settings to enable this feature, but you can try to do the following:

1. Create new Git repository in Stash;

2. Go to Subversion Mirror page;

3. Fill in all the required fields there and click continue;

4. When the page with authors mapping is displayed (see screenshot below), adjust SubGit config file <STASH_HOME>/data/repositories/<ID>/subgit/config, so it has the following option:

[svn]

skip = ^c(\\/|$)

You can use any Java regular expression here; SubGit ignores any path within any branch and tag if it matches that regex.

Hint: you can find repository ID on Settings | Repository Details page.

Authors mapping

5. Finally, adjust authors mapping as needed and start initial import by clicking continue.

Please feel free to ask any questions on that.

Regards,

Semyon

Joseph Smith February 2, 2014

That's great. Thanks!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events