How can you list all subversion merges?
For example:
Trunk ____9_____14____20___
\ \ \
\______\_____\____
Branch01 10 15 21
If I branched on rev 9, and then did a merge at rev 14. What is the subversion command line that identifies rev 15 as a merge from rev14 from trunk? The only way I can tell now is from the log file. However, I know I can issue the following command:
svn log –-stop-on-copy svn:<URL>/branches/Branch01
and it will stop on rev 10 (branched). Is there a command I can issue, that will list 21, 15, and 10 as copies from trunk?