what is the difference between tortoise svn repository and visual svn repository?
Asked Answered
B

2

7

As far as I know, VisualSVN Server is a server while TortoiseSVN is a client. But I can also create repository with tortoise svn only, without needing Visual SVN.

What is the difference between the two or am I missing something?

Brie answered 27/6, 2012 at 20:40 Comment(0)
H
6

The difference is that the repository you create with TortoiseSVN client is a local repository on your machine. But that repository is of the same kind as the one the Visual SVN server (or any other SVN server) uses. If you move your locally created repository to your svn server you can access it via the server instead.

Hughhughes answered 27/6, 2012 at 20:43 Comment(4)
but I do not see the green icons on the file names.Brie
I did that btw, still no icons.Brie
The green icons are only on the Working Copy.Hughhughes
If the green icons does not appear on the Working Copy after a while you might check the TortoiseSVN settings. You can enable/disable the overlay icons in different folders.Hughhughes
S
5

An SVN repository is "just" a bunch of files and directories. You can access this repository directly (file: protocol) or through http, https, svn, etc.

TortoiseSVN just allows creating the repository. If you need to access it using another protocol than the file: protocol, you'll need a server (which TortoiseSVN doesn't provide).

Slobber answered 27/6, 2012 at 20:44 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.