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!!
Asked
Active
Viewed 1,789 times
1 Answers
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