[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: How to get the list of files I modified in the last 3 weeks?

From: Dale Worley <dworley_at_pingtel.com>
Date: 2005-07-26 19:55:17 CEST

for REV in $( svn log -q -r{2005-07-01}:HEAD . | grep your-name | sed -e
's/^r\([0-9]*\).*$/\1/' )
do
    svn log -qv -r$REV .
done
 

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Received on Tue Jul 26 20:02:10 2005

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.