I’m looking for a way to extract info on all branches within a repository.
I’m only interesteted in the name of the branches.
I have tried to play around with SVNKit, but haven’t been able to figure out, how to get this information.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If the repository structure is known, you may use either
SVNLogClient.doList(SVNURL, SVNRevision, SVNRevision, boolean, boolean, ISVNDirEntryHandler)or you may go with the more low-levelSVNRepositoryAPI directly. Have a look at the listEntries example at:http://wiki.svnkit.com/Printing_Out_A_Subversion_Repository_Tree