SVN: Is it possible to get the list of revision numbers for given path?
问题 I am making a PHP tool that connects to a repository, downloads the list of commits and stores them locally. However, due to the possibility that certain repositories are HUGE and grabbing their log results in long waiting time and possible time-outs/errors, I would like to download each commit message using async requests. So, I have a start and end points in revision history, and I can grab all logs like this: svn log -r <from_revision>:<to_revision> <REPO_URL> ... and I will possibly end