How can i create a branch in svn using SharpSVN
Asked Answered
T

1

6

I am using SharpSVN to access my subversion repository using SharpSVN, i need a means to create a branch programatically using SharpSVN, how is this done!!

Topsoil answered 14/11, 2011 at 12:53 Comment(0)
B
11

Usually a branch is created with svn copy <path> <URL> or svn copy <URL1> <URL2>.

With SharpSvn you can perform this operation using SvnClient.RemoteCopy(). The function SvnClient.Copy() is only used when the target is a local path.

Bigmouth answered 16/11, 2011 at 11:46 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.