I am trying to migrate a SVN project to git with thel help of svn2git. When executing the command it exits with the following error:
Running command: git branch --track "0.0.9" "remotes/svn/0.0.9"
fatal: Cannot setup tracking information; starting point 'remotes/svn/0.0.9' is not a branch.
Started it with:
svn2git http://<host>/<project>
I can't find any solution for it and it seems not many users has the same problem.
What can I do to solve this problem?
-v
, might print some useful debugging information, including output from git which made it believe there is such a remote branch. – Curtiscurtiss