Re: examining repository for files that only I have changed
From: B Smith-Mannschott <bsmith.occs_at_gmail.com>
Date: Sat, 22 Jan 2011 16:51:18 +0100
On Fri, Jan 21, 2011 at 17:18, Woodworth, James
Subversion will give you the log as XML, if you ask for it:
svn log --verbose --xml svn://server/repository
Here's an XSLT that will extract the names of *files* added, deleted
-- files-modified-by-author.xsl --
Here's a BASH script which will call svn for the log, pull out the
-- files-modified-by-author.bash --
function get_log () {
function select_files () {
get_log | select_files | sort -u
Edit the values of REPOSITORY and AUTHOR as necessary for your
Then, you can call the script as follows and record the resulting list
bash files-modified-by-author.bash > files-modified-by-author.txt
HTH
// Ben
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.