Tortoise SVN Client and getting repo-browser url from .svn folder

12.5k Views Asked by At

I have this file structured svn directory and file: enter image description here

When I try to see repo browser:

enter image description here

Tortoise can easly find the url of this folder: enter image description here

I wonder that how tortoise got the url of the folder where I clicked to see in Repo Browser?

Edit:

Tortoise SVN 1.8+
3

There are 3 best solutions below

0
uzay95 On BEST ANSWER

I just ran c:\DirectoryOfMyProjectWhicHasHiddenSvnFolder>svn info Result:

enter image description here

2
malenkiy_scot On

That information is stored in your working copy in .svn folder (for SVN 1.6 there is .svn folder in every folder of your working copy; for SVN 1.7 it's only at the top level).

0
Ravi Parekh On

In .SVN folder ws.db file which contain all the information, It's in Sqlite format.

You can open it using any SQLite tool. I have used Sqlite firefox plugin.

Goto table Repository and read 'ROOT'.

enter image description here