John
John

Reputation:

ANy way to make java class files in sync online

I am practicing java in Eclipse both in home and college.

Is there any way that when i co the coding the file save on some server and syc there and then when i go to college then again i can use same file

Upvotes: 1

Views: 170

Answers (3)

anon
anon

Reputation:

You need a revision control system. Take a look at the various plugins for Eclipse, like for example git or svn plugins.

Upvotes: 1

StevenWilkins
StevenWilkins

Reputation: 1323

You should look into using a distributed version control system like mercurial on bitbucket. The advantages of mercurial and bitbucket are really easy setup and unlimited private repositories (github doesn't offer this) which is perfect for course work and you get your stuff backed up on the cloud.

Upvotes: 2

jhurtado
jhurtado

Reputation: 8747

What you need here is Revision control, but you will need to install it in a server you have access from both college and home. Maybe your college can provide you with some space or you might start a personal project in google code or gitHub. :)

I find CollabNet SubVersion Edge pretty Straightforward and easy to configure.

Upvotes: 0

Related Questions