Git Svn - Found possible branch point

前端 未结 3 1740
無奈伤痛
無奈伤痛 2020-12-29 02:38

I\'m trying to use git svn to clone a SVN repo into Git.

I run the following command:

C:\\Projects>git svn clone -T trunk -b bran

3条回答
  •  梦毁少年i
    2020-12-29 03:23

    My problem was that due to such a large SVN (files and log) that it kept crashing at some points and when I restarted it created multiple lines of the branches and tags within my .git/config file.

    branches = branches/*:refs/remotes/svn/branches/*
    tags = tags/*:refs/remotes/svn/tags/*
    

    I simply removed the duplicate entries of these and restarted with my command

    git svn fetch
    

提交回复
热议问题