tags:

views:

35

answers:

2

Hi,

I'm trying to get all branches of repository by using SharpSvn but I can not find any method can do it. Is it possible to get all branches by using SharpSvn?

Thanks for reading my question.

Handle

A: 

I don't know anything about SharpSVN, but branches in Subversion are just directory trees -- there's nothing special about them.

If your repository follows they typical layout with three top-level directories (trunk/ branches/ tags/), you can just check out the /branches directory to get all the branches side-by-side.

timdev
A: 

Thanks for replying me. In some case, the repository has a difference structure from the default of Subversion. Does subversion manage all branches of repository?

handle0088