RE: list of modified files between two changesets
From: Bolstridge, Andrew <andy.bolstridge_at_intergraph.com>
Date: Tue, 10 Feb 2009 16:39:30 -0000
My advice would be to use a post-commit hook, with the svnlook changed option. (or even dirs-changed).
I use this to write the list of changes to a file, then at midnight, use that list to "svn export" the unique lines to a temporary directory to run a tool over them. You would ftp them instead, its remarkably easy.
I use windows, but this is the hook I use:
for /F "eol=¬ delims=¬" %%A in ('svnlook dirs-changed %1 -r %2') do echo %%A >> c:\svn_exports\export.txt
Andy
-----Original Message-----
Hi,
We (3-4 developpers) use to use SVN on our LAN.
------------------------------------------------------
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
|
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.