How do i query to list out all commits by a user to a subversion repository?
Posted
by VDev
on Stack Overflow
See other posts from Stack Overflow
or by VDev
Published on 2010-05-05T18:39:56Z
Indexed on
2010/05/05
19:18 UTC
Read the original article
Hit count: 191
subversion
The title pretty much sums up my question, I would like to find all commits I have ever done to the subversion repository. Not just commits in current snapshot. More importantly, I would like to organize the file lists by the SVN comment used while committing.
Thank you
Edit: I am thinking maybe a python or shell script that would parse the output of
svn log | grep username
to extract revisions and then pipes the output to
svn log -r [revision numbers go here]
Maybe some scripting gurus can help me out..
© Stack Overflow or respective owner