You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Johan Chaves Saborío <jo...@gmail.com> on 2005/11/08 17:14:48 UTC

report files changed between revisions without a wc

Hi.

I need a report of which files has change between two revisions.

I know "svn merge --dry-run" does the job, but I need a working copy to run
"svn merge".

Ideas????

Re: report files changed between revisions without a wc

Posted by Johan Chaves Saborío <jo...@gmail.com>.
On 11/8/05, Paul Koning <pk...@equallogic.com> wrote:
>
> >>>>> "Johan" == Johan Chaves Saborío <jo...@gmail.com> writes:
>
> Johan> Hi. I need a report of which files has change between two
> Johan> revisions.
>
> svn log -r rev1:rev2 -v will give you each of the log entries
> including the changed files. You can then extract just the list of
> changed files from that.


the problem with the svn log is that it groups the changes by commit.... so
it contains repeated entries for files modified in several commits....

I need an output similar to "svn merge --dry-run", I mean, the list of files
and the action made on each.