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

11,435

Solution 1

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

enter image description here

Solution 2

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

Solution 3

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

Share:
11,435
uzay95
Author by

uzay95

Love this game (walking, talking as a programmer) :)

Updated on June 07, 2022

Comments

  • uzay95
    uzay95 almost 2 years

    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+
    
  • uzay95
    uzay95 almost 12 years
    Yes you are right. But I wonder that can I get this directory's repository folder?
  • malenkiy_scot
    malenkiy_scot almost 12 years
    You are not supposed to access it directly - only via SVN commands. Otherwise you can corrupt it and then you are toast :)