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

Re: Diff usage

From: Jacob Atzen <jacob_at_aub.dk>
Date: 2006-05-06 08:48:19 CEST

On Thu, May 04, 2006 at 11:50:57AM -0700, Mike Craig wrote:
> I'm trying to figure out a way to get a list of files that have changed
> between revision numbers, but I don't want the actual line changes
> returned, only the files.

Perhaps you could use something like:

        svn log -v -r X:Y | grep " [A|M]" | cut -d' ' -f 5 | sort |
        uniq

This will only tell the name of files that were either added or
modified between revision X and Y.

-- 
Cheers,
- Jacob Atzen
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Sat May 6 08:51:10 2006

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.