Access to an earlier version of SVN repo via HTTP / mod_svn

Using the mod_svn module for apache, you can access the repository, but not through the SVN client, but also directly through HTTP using the same URL. In this case, you only get a regular directory list displaying a HEAD revision.

Is it possible (maybe via URL parameters) to get access to older versions of the SVN repository if they were copied / marked by the network in SVN?

I know that there is third-party software that allows you to do this as ViewCV or WebSVN, but I am interested in how far you get only a simple SVN repository, accessible through mod_svn and HTTP (S).

+3
source share
1 answer

r querystring mod_dav_svn. :

http://host.example.com/repos/project/trunk/README.txt?r=1234

SVN Book , .

+9

All Articles