简体   繁体   中英

git-svn create svn branch from svn branch

With git-svn If I have cloned svn repository with all trunk, branches and tags, how do I create a new svn branch out of a svn branch?

I know I can create a new branch from trunk (master) with git svn branch, but how do I handle this from a branch?

SHould I first create a local tracking branch from the branch, and out of it invoke git svn branch?

I did it using a local tracking branch, and create branch from it:

git checkout master
git branch --track localToBeCloned BranchToBeCloned
git checkout localToBeCloned
git svn branch NewClone -m "new branch created"
git branch --track localNewClone NewClone
git checkout localNewClone

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM