I'm trying to migrate a very large svn repository and initially I just started a fetch from revision 13989.
This gave me the chance of having an uptodate git mirror which was awesome - but it took weeks to create.
Now I would like to get the full history in there (i.e. r1-13989) and tried doing:
svn git fetch -r 0:13989
(as described in Git svn clone: How to defer fetch of revision history)
This seemed to work (it was fetching for 3 days) but the files that before had their history abruptly end at 13989 before still has this abrupt end.
The new fetched revisions are not aligned into the history.
Any way to fix this other than having to start doing a full complete giv svn init/fetch again ?