Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVN Branch Viewer

Tags:

svn

Is there is a tool for SVN that visually shows how branches are related? I've got a couple dozen branches and it isn't clear how they were created from one-another.

EDIT: I'm not looking for indivial files, I need to look at whole branches. For example:

Branching guide from TFS docs

like image 319
Jonathan Allen Avatar asked Nov 04 '22 12:11

Jonathan Allen


1 Answers

I know only of a non-free one: SmartSVN:

SmartSVN branches

But the graph feature of the latest TortoiseSVN 1.7 can help too:

Can create a graph of all revisions/commits. You can then easily see where you created a tag/branch or modified a file/folder

TortoiseSVN graph

Since a branch is a directory in SVN, you can display the its graph and see at the path of the revision of its origin, to get an idea of the "parent" branch.

like image 115
VonC Avatar answered Nov 09 '22 18:11

VonC