How to create a branch in svn using SharpSVN

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!

+5
source share
1 answer

Typically, a branch is created using svn copy <path> <URL>or 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.

+10
source

All Articles