You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by "Tardif, Sebastien" <ST...@anacomp.com> on 2005/07/26 15:48:37 UTC

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

I have to put in a PVCS branch a feature I developed for three weeks in
Subversion. So I took some notes but I modified so many files that I'm
not sure of my notes anymore. So I want to ask the computer to get me
the exact list of files I need to merge in PVCS. So the question:
 
How to get the list of files I modified in the last 3 weeks?
 
So I get this:
svn log -vr  {2005-07-01}:HEAD .
 
The output look like this:
{START}

------------------------------------------------------------------------
r2069 | stardif | 2005-07-25 18:23:41 -0400 (Mon, 25 Jul 2005) | 1 line
Changed paths:
   M
/trunk/javacomponents/webservices_java_sample/sample/src/DocHarborWebSer
vices.java
 
My comment on modification done to DocHarborWebServices.
------------------------------------------------------------------------
r2071 | jsmitt | 2005-07-26 11:15:01 -0400 (Tue, 26 Jul 2005) | 1 line
Changed paths:
   A /trunk/javacomponents/webservices/etc/index.html
   M /trunk/javacomponents/webservices/release.xml
 
Comments on modification done to index and release.
------------------------------------------------------------------------
{END}
 
The output needs many cleanup steps and filtering. Any public script or
tool doing this somewhere?
 
Does the way of doing this is that every user write their own perl
script?
 
 

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

Posted by Carsten Koch <Ca...@icem.com>.
Tardif, Sebastien wrote:
...
> How to get the list of files I modified in the last 3 weeks?
>  
> So I get this:
> svn log -vr  {2005-07-01}:HEAD .
...
> The output needs many cleanup steps and filtering. Any public script or 
> tool doing this somewhere?

Try svn log -q -v -r {2005-07-01}:HEAD .


Carsten.

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

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

Posted by Dale Worley <dw...@pingtel.com>.
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