user358352
user358352

Reputation:

Using svn in eclipse

I want to Use svn, for subversioning. Can i use any machine as a repository on the LAN or just the one which is Server.

Upvotes: 1

Views: 236

Answers (6)

Bozho
Bozho

Reputation: 597016

You can install SVN server on any machine.

However it would be easier to use some service that offers svn, because installing and administrating it is not always straightforward. If it's no problem for you make your project open-source, you can use Google code or SourceForge. If you need a private repository See https://stackoverflow.com/questions/59791/free-online-private-svn-repositories, there you can find some private repositories

Since you've tagged eclipse, in order to use SVN in eclipse, you need subclipse or subversive.

Upvotes: 5

gavtaylor
gavtaylor

Reputation: 653

as long as the server running subversion can access the folder using a direct filepath you should be fine...

Upvotes: 0

Aaron Saunders
Aaron Saunders

Reputation: 33335

you can use any machine that is running the server software, it sounds like you are looking for software like git http://git-scm.com/

Upvotes: 0

Simon Scarfe
Simon Scarfe

Reputation: 9618

As long as all of your desired clients can see the repository machine through the relevant port, you should be fine.

Upvotes: 0

Sebi
Sebi

Reputation: 8953

You can install a SVN repository on any machine. SVN doesn't really require a server, but your users must be able to access the machine, e.g. with ssh or Apache.

Upvotes: 0

splash
splash

Reputation: 13327

You can connect to any subversion server you want.

Upvotes: 0

Related Questions