I want to migrate a repository from svn to git. I'm using svn2git from this repository: https://github.com/svn-all-fast-export/svn2git
When I do : svn2git/svn-all-fast-export --rules ruleset/module svn/module
I get this error:
svn: E000002: : Can't open file 'svn/module/format': No such file or directory
This Format file does not exist.
Where the svn/module folder is my repository that contains a trunk folder and tags folder, both with files inside.
The ruleset/module file has:
create repository module
end repository
match /trunk/module/
repository module/
branch master
end match
match /tags/module_(\d+)
repository module
branch master
end match
Does anyone know how to solve this problem?