Hello there,
I'm importing, with SVN Mirror, an SVN repository that has the usual structure:
The import works as flowless as always, except a lot of commits are missing.
After a short investigation, I found the cause: The structure in SVN hasn't been always like that. The trunk used to coincide with the project's main folder:
So my import into git misses all the commits belonging to the old structure.
The switch in the SVN repository was made with svn move. The history in SVN itself looks fine. But the import into git seems to look at the new project/trunk structure only.
Does anywone know how I could get a git repository with the old and new SVN structure merged into a linear master? Ideally without changing anything on the SVN repository.
My idea was to import "project" as the master, "project/trunk" as a branch, and then, in git, rebase project/trunk on top of the master. But I can't seem to figure out the correct mapping subgit layout.
I tried with
trunk = .:refs/heads/master
but "." doesn't seem to be accepted as a valid folder.
Any idea?
Hello Roberto,
Unfortunately it is impossible to import both ^/project and ^/project/trunk into separate branches; our plugin can only import ^/project as a branch but then ^/project/trunk is a regular directory within this branch or the plugin can import ^/project/trunk and then the history of ^/project get skipped.
As I workaround I'd recommend you to run two separate imports:
Once you have two separate Git repositories imported from SVN, you can join their histories using grafts/replace + `git filter-branch` technique. Basically, you should edit master branch as follows: set last commit of ^/project history as a parent to the very first commit of ^/project/trunk history. For more information on that please refer to this blogpost (see Fixing up history part) and at Git docs.
Regards,
Semyon
Are there any plans to create this feature?
We failed to do this manually. We tried multiple tries and took use hours, but still the history is broken or gone.
If we rename <SVN_ROOT>/test to <SVN_ROOT>test2. The commits on <SVN_ROOT>/test are missing. We thing that this case isn't difficult to support?
It is fine to use if this is a paid plugin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Julian,
Could you please provide more details on the problem:
Do I understand your case correctly saying that you had the following structure:
SVN_ROOT/test/trunk
SVN_ROOT/test/branches/*
SVN_ROOT/test/tags/*
that was later moved to
SVN_ROOT/test2/trunk
SVN_ROOT/test2/branches/*
SVN_ROOT/test2/tags/*
Please send your comments to support@subgit.com so we can proceed there.
Thanks,
Semyon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the fast response.
I will send an email
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have tried the import as above. One problem is that import number one takes forever and eventually fills up my disk space. I guess that's because it's looking at all projects under <SVN_ROOT>.
I would be very interested to dig into this problem and build some useful expertise. But I'm afraid commercial reasons will have priority here: in this case the cost of solving this problem is higher than losing all the history. So I will just import the files into an empty git repository, starting history from scratch.
Thank you anyway for your useful answer!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have tried the import as above. One problem is that import number one takes forever and eventually fills up my disk space. I guess that's because it's looking at all projects under <SVN_ROOT>.
Indeed, I somehow missed that part: when importing ^/project, it should take significant amount of time to process those revisions committed to ^/project/trunk and ^/project/branches. So, there's one more step here: you should find that revision when ^/project was moved to ^/project/trunk and perform initial import of ^/project until that revision only. You can achieve that by stopping import progress (there's a 'pause' button on Subversion Mirror page).
I would be very interested to dig into this problem and build some useful expertise. But I'm afraid commercial reasons will have priority here: in this case the cost of solving this problem is higher than losing all the history. So I will just import the files into an empty git repository, starting history from scratch.
Ok. In any case feel free to conact us at support@subgit.com, if you'd still have any questions. Please also consider importing at least that part of SVN history after moving ^/project to ^/project/trunk (AFAIU you've already done that), quite often it is very helpful to have more or less recent history imported.
Regards,
Semyon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Semyon,
That sounds sensible. I'm giving it a try. I'm not familiar with the techniques for editing the git branch afterwards, but I'll try.
Roberto
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.