So I'm working on a project that is hosted on Google Code. Sometimes I use my desktop, other times I'm not home and I want to work on my laptop. To ease the development, I use subversion. To tell my problem, let's suppose the following scenario: First I create the project on my laptop, and commit it to Google Code. Next time I work on desktop computer, and I checkout the project and after doing some work I commit my changes. Now I want to update my project on my desktop to have the latest version, but the only available action in the right click menu of my project is "commit".

So how should I do this?

Note: Suppose that I also make some changes that I want to discard before the update.

link|improve this question

67% accept rate
2  
If you were using the command line version, the appropriate method would be to revert all the changes using svn revert -R . in the root directory of your working copy, followed by svn up. I'm not sure how to do the same thing from the GUI unfortunately -- I've always preferred the simplicity of the command line. – Stuart Golodetz Dec 18 '10 at 20:17
@Stuart It doesn't sounds like a revert to me – RichardOD Dec 18 '10 at 20:22
Thanks for the comment. Surely I can do this from the cli, I'm just wondering if NetBeans will see the changes. I'm ok with doing all the commands from the command line, but all I want is NetBeans to know what's going on with the project. – s3v3n Dec 18 '10 at 20:22
@RichardOD: He said "Suppose that I also make some changes that I want to discard before the update." Which seemed to me like a revert followed by an update -- am I missing something? – Stuart Golodetz Dec 18 '10 at 20:24
@s3v3n: 'fraid I can't help with that aspect of it, sorry -- I don't use NetBeans at all. – Stuart Golodetz Dec 18 '10 at 20:26
show 5 more comments
feedback

2 Answers

I think the command you're looking for is revert.

I'm using Subclipse, and I just right-clicked on the project, went to "Team", and selected "Revert..." and removed local changes (after confirming what was being removed).

link|improve this answer
Well, maybe. This question is more than a half year old and I switched to git already :). Thanks anyway – s3v3n Aug 30 '11 at 15:12
feedback

I'm not familiar with SVN, but with GIT (which I'm told is better than SVN) you can do what is called a "rebase." It essentially merges the two branches together. You can also just pull and overwrite local changes.

link|improve this answer
actually earlier I don't know how, maybe I just did the checkout again, but I got merge errors. As I understand, svn is not too good at keeping track on branches. – s3v3n Dec 18 '10 at 20:19
@s3v3n - this is totally true. SVN is subpar compared to git – sethvargo Dec 18 '10 at 20:44
Unfortunately google code offer me only subversion or mercurial. As I work alone on this project, I preferred subversion. – s3v3n Dec 18 '10 at 20: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.