Reputation: 1759
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).
Upvotes: 14
Views: 6253
Reputation: 1010
For those who are using TortoiseSVN
, this information is available through its UI.
Show log
option from TortoiseSVN's context menuStop on copy/rename
For new branches, it should mention: Path
, Action
, Copy from path
, Revision
The information you need is under Copy from path
column.
Upvotes: 1
Reputation: 3818
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.
Upvotes: 18