Reputation: 23187
Is it possible to create a new local working SVN copy from a specified repository using C# code?
Upvotes: 1
Views: 274
Reputation: 2530
you can run a command line from c# ... use (check documentation for correct syntax)
svnadmin hotcopy [source] [destination]
Upvotes: 0
Reputation: 564373
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.
Upvotes: 3