sooprise
sooprise

Reputation: 23187

Creating A Local Working SVN Copy Via C#?

Is it possible to create a new local working SVN copy from a specified repository using C# code?

Upvotes: 1

Views: 274

Answers (2)

MaLio
MaLio

Reputation: 2530

you can run a command line from c# ... use (check documentation for correct syntax)

svnadmin hotcopy [source] [destination]

Upvotes: 0

Reed Copsey
Reed Copsey

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

Related Questions