Hi all you clever people!
Given the revision number of any application in my SubVersion repository, how can I (using SharpSvn):
- Determine which application name the revision number identifies?
- Determine if it is a trunk or a branch revision?
- Determine the name of the branch (if it is a branch revision)?
My repository is organized this way:
Application1
Trunk
<Application files>
Branches
BranchName1
<Application files>
BranchName2
<Application files>
...
Application2
Trunk
<Application files>
Branches
BranchName1
<Application files>
BranchName2
<Application files>
...
I guess I should somehow retrieve the set of files that were changed with that specific revision number and then look at the Svn file paths?
Can it be done at all?