aholub7x
aholub7x

Reputation: 818

git-svn: replacing trunk branch with another

How to replace the trunk branch with another in svn repository using git-svn tool?

Upvotes: 2

Views: 360

Answers (1)

Ben Stiglitz
Ben Stiglitz

Reputation: 4004

That's not something git-svn can do; while you can rename your branches on the git side, or tell your git clone's master to track a branch other than trunk, you'll need to use SVN to do the SVn branch rename.

Upvotes: 3

Related Questions