3

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+
Ravi Parekh
  • 5,253
  • 9
  • 46
  • 58
uzay95
  • 16,052
  • 31
  • 116
  • 182

3 Answers3

6

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

enter image description here

uzay95
  • 16,052
  • 31
  • 116
  • 182
3

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

Community
  • 1
  • 1
Ravi Parekh
  • 5,253
  • 9
  • 46
  • 58
1

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).

malenkiy_scot
  • 16,415
  • 6
  • 64
  • 87