I work on my school projects on two machines- my laptop and desktop. Recently I've started using subclipse for version control, and have it plugged in Eclipse on both machines.

While working on a single machine, I understand the checkout/commit process and synchronizing in the Team Synchronizing tab.

So, how do I update the working copy of the other machine in subclipse without having to checkout and overwrite the entire project on the local machine?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Right click on the project and select

Team->update

.

link|improve this answer
I had come across the Team>Update line, but had no idea how to find it. Thanks! – Jason Nov 17 '10 at 16:12
So you know, Team>Synchronize is just a convenient user interface for combining Team>Update and then Team>Commit. So you can do it using Synchronize too. – JW. yesterday
feedback

As far as I understand, Subversion and CVS require you to have a server that hosts the repository. Then from any remote machine you checkout from and commit to this central repository. Wherever you host the main repository (you'll probably do it on your desktop?), you should checkout a copy on both your laptop and the desktop. Then you have: Working copy on your laptop, working copy on your desktop, and central repository on, e.g., your desktop.

This should solve your synchronization issues.

However: For your problem at hand, I strongly recommend looking into Git, another nice version control system that does not require a centralized host: All checkouts are treated equally, so you make changes on your laptop and push them to the desktop, or you make changes on your desktop and push them to the laptop, or you pull changes from the laptop to the desktop and vice versa.

link|improve this answer
I have my repository hosted by sliksvn.com. Your solution would work if I had both systems on at the same time. However, both are rarely on simultaneously, so there is the need for a centralized repository. – Jason Nov 17 '10 at 16:13
Oh, okay. You didn't specify where your repo was hosted so I assumed it was hosted locally. My bad. – Lagerbaer Nov 17 '10 at 16:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.