I use SharpSVN to access my subversion repository using SharpSVN, I need a tool to create a branch programmatically using SharpSVN, how it is done!
Typically, a branch is created using svn copy <path> <URL>or svn copy <URL1> <URL2>.
svn copy <path> <URL>
svn copy <URL1> <URL2>
With SharpSvn, you can perform this operation with SvnClient.RemoteCopy(). A function is SvnClient.Copy()used only when the target is a local path.
SvnClient.RemoteCopy()
SvnClient.Copy()