git-svn branching

前端 未结 2 1607
再見小時候
再見小時候 2020-12-13 18:53

I am using git with an svn repository everything is going fine I did all my branching with git so I did not branch on svn but I branched with git and pushed those branches t

2条回答
  •  萌比男神i
    2020-12-13 19:42

    If I read the git svn man page right:

    git svn  [options] [arguments]
    

    , you should type:

    git svn branch -m "message" someFeature 
    

    instead of:

    git svn branch someFeature -m "message"
    

提交回复
热议问题