Creating A Local Working SVN Copy Via C#?
Is it possible to create a new local working开发者_Go百科 SVN copy from a specified repository using C# code?
You could do this using sharpsvn (or any .NET wrapper for SVN). This is used by many SVN clients (such as AnkhSvn and MonoDevelop) for all of their SVN bindings, and supports pretty much the entire set of SVN commands.
you can run a command line from c# ... use (check documentation for correct syntax)
svnadmin hotcopy [source] [destination]
精彩评论