Liren Yeo
Liren Yeo

Reputation: 3451

How can I create the url for my repository in TortoiseSVN?

I am sorry if my question seems utterly simple, but I have read a few beginner's guide on TortoiseSVN and still couldn't find what I want.

How can I create the url for my repository? Must I host a server of some sort?

Basically my colleague is using a program I have written, and I am constantly updating the source codes. We are currently using windows local folder/file sharing and it is very inconvenient (I can't modify the files while she is using them). TortoiseSVN can definitely solve the problem but I am not sure how can I obtain the url for my repository.

Upvotes: 2

Views: 1628

Answers (3)

Alps1992
Alps1992

Reputation: 97

If you want to setup an svn server, the @ilcavero's answer is right.

If you just trouble about how to setup an svn server, you can use Github or sourceForge.

github: www.github.com sourceForge: www.sourceforge.net

and the private repository also can use in :https://bitbucket.org/

=====
edit 2016/01/11 What I mean is not the git repo === svn repo.
I just want to say that you can use git to replace the svn without setup a svn server.
OK?

Upvotes: 1

sudhansu63
sudhansu63

Reputation: 6180

you need host a SVN server . you can install Visual SVN to create a SVN server. you can install this on the same machine as well.

you can also use different freemium online Source Control Management like github, bitbucket, TeamFoundationServer, assembler. These services use their own client github client and TFS client(comes integrated with Visual Studio).

Upvotes: 2

ilcavero
ilcavero

Reputation: 3082

TortoiseSVN is an SVN client, what you are looking for is an SVN server, how to get one depends depends on your OS, check this question as a start

Setup an SVN Server?

Upvotes: 2

Related Questions