When using svn in Eclipse, can I add files normally or do I need to tell SVN about an add? If so, how?
Also, is it a must to always do an update to get the latest code from the server when working on a project? The problem with this is that sometimes another team member may work on the code I am working on and check in at every milestone without informing me (when the task is not pair-based, either).
Finally, is there a sandbox feature in svn? Like a local repository of my code which is still WIP. If so, where?
Thanks
You can still use another SVN client like the commandline or what have you. Just make sure you refresh your project in Eclipse before trying to commit.
Its not a must but It’s adviseable to do so before you commit. Firstly because your changes my break the project if they arent in sync with the changes others have committed. Secondly, if your changes modify a file that has been changed and commited since the last time you did an update
svnis going to make you do an update on that file before it allows you to commit anyway.No there isnt. There is your “Working Copy” and there is the “Repository”. This is one of the use of branches in
svn. Each team member could have their own branch, or each feature could have its own branch for isolated development. Developers can then commit to the branch they are working on as they see fit, and when they are done someone can merge that branch back to the trunk.