1. Download Eclipse SVN plugin ( subclipse)
a) Go to Help menu of Eclipse -> Add New Software -> add URL (http://subclipse.tigris.org/update_1.6.x)
2. Create a SVN repository anywhere you want (e.g. your university server, other SVN repository providers like assembla)
Use command Line to create a repository:
svnadmin create --fs-type fsfs MyNewRepository
3. Now share/upload your your Eclipse project to the SVN repository
a) Right Click on the eclipse project -> Team -> Share project -> Use Existing Repository -> Add URL -> use user Name/password for your repository
When uploading to a server that does not allow http rather use ssh, use:
svn+ssh://user@ssh.yourdomain.com/path
//you would need to provide your username along with URL
rather than http://…
//http if that server or free space allows http or web access to the repository
4) Team -> Commit – to upload your changes from local
5) Team -> Update – to upload others’ changes to your local