I need to find the first committer of a branch without having to do a checkout of all the entire branches. From command line that is very easy to do:
svn log -v --stop-on-copy http://subversion.repository.com/svn/repositoryname
I need to do this from a python script, any idea how can I do that? I checked the python subversion bindings but I cannot understand how to do it even if it seemed it can be done.
Any help will be appreciated.