[Solved] Finding the modules where changes were checked with svn

Three separate tasks: call svn properly to create the log parse the log Write the parsed values somewhere 1. import subprocess as sp svn_url = “svn://repo-path.com/project” revisions = [12345, 12346] revision_clargs = [“-r%i” % revision for revision in revisions] popen = sp.Popen([“svn”, “log”, “-v”] + revision_clargs + [svn_url],stdout=sp.PIPE,stderr=sp.PIPE) out,err = popen.communicate() 2. input_ = “”” … Read more

[Solved] Free source control tool to replace CVS – separate repository /working folders are required [closed]

This question indicates you should have no problems having a central Mercurial repository on a network share, given certain limitations: Can you ‘push’ to network share using Mercurial on 64bit Windows 7? However, individual users will still have local copies of the repository. Before ruling out non-shared folder methods, you should review Mercurial’s page on … Read more