How to connect an SVN server in C ++

Hi guys I want to connect an svn server and upload one file from svn to my computer location using C ++ and writing this program. How can i do this? thanks

+4
source share
1 answer

You have several options:

In the past, I have done both approaches. The SVN client library is actually quite easy to use.

Edit

The subversion client library is described in Version Control with Subversion . Pay particular attention to Chapter 3 and Chapter 8 . I started by capturing the source snapshot from subversion.apache.org and reading the source code for the command line client. It is located in <root>/subversion/clients/cmdline . I found that the source is simple enough to observe.

+5
source

All Articles