25

Does anyone know where the SVN global config file is for the Slik SVN client for Windows? Specifically 64 bit?

Eric J.
  • 147,927
  • 63
  • 340
  • 553
Darren
  • 10,631
  • 8
  • 42
  • 64

5 Answers5

35

Mine is located here (Windows 7 64-bit):

%USERPROFILE%\AppData\Roaming\Subversion\config
Brandon
  • 573
  • 4
  • 7
9

It's usually located in %APPDATA%\Subversion.

Stefan
  • 43,293
  • 10
  • 75
  • 117
  • FYI: Restart after a fresh install. The `%APPDATA%/Subversion` folder didn't exist until I did a reboot... There might be a cleaner way to do this -- maybe logging out/in. – blackstrype Feb 27 '15 at 10:11
  • 1
    The folder is created after you first start any svn client. no need to reboot. – Stefan Feb 27 '15 at 12:56
  • I can not find it on my server. Why it is not created? – Bob May 04 '15 at 06:34
  • most likely on your server, the svn part runs as another user than the one you're logged in. So %APPDATA% points to your folder instead of the server-user folder. But you can figure out the path by replacing the username in the expanded %APPDATA% path. – Stefan May 04 '15 at 08:12
4

Paths:

C:\Documents and Settings\%USERNAME%\Application Data\Subversion\  --Windows XP   
C:\Users\%USERNAME%\AppData\Roaming\Subversion  -- Vista / 7

In Windows, If you can't see the config file. You can open it (without extension) if you paste the above selected path in your window explorer. And then will choose your IDE app.

Finally, you can read the README file located in the same route.

uri
  • 41
  • 1
  • from the readme: global config: %ALLUSERSPROFILE%\Application Data\Subversion\config user specific config: %APPDATA%\Subversion\config – rogerdpack Mar 09 '12 at 18:44
1

Or here if using the "localsystem" account: C:\Windows\System32\config\systemprofile\AppData\Roaming\Subversion

Credit to: this answer

Community
  • 1
  • 1
Paul Martin
  • 316
  • 3
  • 5
0

In my case all pathes from the comments contain default empty config files and real service parameters were stored at the registry: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Clansoft\SVNService

AlexandrS
  • 51
  • 7