我使用以下命令创建了一个 svn 存储库的本地 git 副本:
$ git svn init svn://host/path/to/repo/PROJECT/trunk workingcopy
$ cd workingcopy
$ git svn fetch
现在我正在尝试创建一个 svn 分支但没有成功:
$ git svn branch -n mybranch -m "Branch for my things"
Multiple branch paths defined for Subversion repository.
You must specify where you want to create the branch with the --destination argument
在此答案中,.git/config
我没有任何条目。我尝试添加,但这会尝试在主干下创建分支:[svn-remote "svn"]
branches = branches/*:refs/*
Copying svn://host/path/to/repo/PROJECT/trunk at r6684 to svn://host/path/to/repo/PROJECT/trunk/branches/mybranch
我需要做什么才能在正确的位置创建分支?