I'm trying to list all branches created from a Parent SVN branch to establish a graphical representation of a branch in Subversion.
Are there any SVN command which can be used to achieve this?
Or is there an approach to solve this?
Example:
Parent Branch: Branch1
Child Branch: Branch2 and Branch3 (both branches created from Branch1).
GrandChildren Branch: Branch2.1, Branch3.1 etc.,
Given Branch1, I'm trying to list the child branches and Grand Children branches that were created from Parent Branch (Branch1) and Child Branches respectively.
Result:
Branch1-------------------Branch2-------Branch2.1 , Branch 2.2 ..
|__________________Branch3-------Branch3.1, Branch3.2...