On Fri, Feb 11, 2022 at 08:29:35AM +0000, Mikael Stålhammar wrote:
> Is there a simple command that lets you list files that have been modified 
> and committed on a feature branch but excluding any files that are committed 
> on the branch that are only merged from trunk (to keep the branch up-to-date 
> with trunk). I.e. I only want to see those files that actually contain branch 
> specific changes.

Find the most recent revision where a merge from trunk to the branch occurred.
If no such merge has occurred yet, find the revision in which the branch
was created.

Let's assume this was revision r100.

Now you can run: svn diff --summarize ^/trunk@r100 ^/branches/mybranch

Reply via email to