Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way in subversion to tell parent branch

Tags:

svn

Is there a way to tell parent branch in subversion? I have two branches BranchA and BranchB I want to be able to tell their parent branch (from which branch was it originally copied).

like image 209
anazimok Avatar asked Mar 16 '11 20:03

anazimok


1 Answers

You can see copy/merge/tag points via svn log -v --stop-on-copy. The -v is verbose, showing which paths were changed and that is where you'll see the copy from location and revision. --stop-on-copy is there to avoid walking past the most recent copy.

like image 169
Jeremy Whitlock Avatar answered Nov 09 '22 22:11

Jeremy Whitlock