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!!

1 Answers1

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.

Bert Huijben
  • 19,525
  • 4
  • 57
  • 73