Sunday, April 3, 2011

How to Connect SVN server in C++

Hi Guys I wanna connect svn server and download one file from svn to my computer location by using C++ and writing this program. How can i make this? Thanks

From stackoverflow
  • You have a few options:

    1. Set up WebDAV and use HTTP.
    2. Use the SVN client library and integrate using it.

    I've done both approaches in the past. 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 grabbing a source snapshot from tigris.org and reading the source code for the command line client. It's in <root>/subversion/clients/cmdline. I found that the source is easy enough to follow.

    ibrahimyilmaz : do you know any tutorial concerned with this SVN Client Library?

0 comments:

Post a Comment