You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Toby Johnson <to...@etjohnson.us> on 2004/07/09 19:37:35 UTC

Show files changed since revision

Is there a good way to find a list of files changed since a certain 
revision (or between two revisions)? An "svn diff -r X:Y | grep ^Index" 
works OK, but it isn't obvious this way whether the files were added, 
deleted, or modified.

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

Re: Show files changed since revision

Posted by Ben Collins-Sussman <su...@collab.net>.
On Fri, 2004-07-09 at 15:03, Toby Johnson wrote:
> 
> The log -v is close except it would be nice to be able to see only files 
> changed in a certain directory. Should be an easy enough quickie script 
> though, thanks..

If you run 'svn log' on a specific directory (whether that be a working
copy dir, or a URL to a dir), then you will only see revisions in which
something within that directory changed.  It's exactly what you want.



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

Re: Show files changed since revision

Posted by Toby Johnson <to...@etjohnson.us>.
Ben Collins-Sussman wrote:

>Of course, if you have a working copy at rX, then you can run 'svn
>status -u -rY' to see a 'dry-run' of  changes that would result.
>
That sounds like it might be useful, but status doesn't support -r!

The log -v is close except it would be nice to be able to see only files 
changed in a certain directory. Should be an easy enough quickie script 
though, thanks..

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

Re: Show files changed since revision

Posted by Ben Collins-Sussman <su...@collab.net>.
On Fri, 2004-07-09 at 14:37, Toby Johnson wrote:
> Is there a good way to find a list of files changed since a certain 
> revision (or between two revisions)? An "svn diff -r X:Y | grep ^Index" 
> works OK, but it isn't obvious this way whether the files were added, 
> deleted, or modified.

'svn log -v -r X:Y'.  The only problem is that the list of files aren't
unique-ized.

Of course, if you have a working copy at rX, then you can run 'svn
status -u -rY' to see a 'dry-run' of  changes that would result.  That's
almost the same.



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