I’m working on a project that initially used Subversion, but the remote repository was removed and i don’t want to use Subversion any more. I want to migrate it to git.
There’s a way to do it without the remote repository, keeping all revisions history (without doing a git init .)?
I’ve already made a subversion to git migration with git-svn with no problems it on other projects, but they were on remote repository and i cannot find any info about migrating it locally.
Subversion is not like Git, it does not keep the repository in your working folder, so you are going to be unable to migrate it.
You will need to create a new repository and check it in as if it was new code.