I want to update to the latest revision of selenium code(http://selenium.googlecode.com/svn/trunk) daily.
I just select the folder in my eclipse,right click,team and select update to HEAD.Buty , this leaves dirty copy of some directories and files..
What i am looking for is: I always want to checkout the latest code from repository to the local directory overwriting local changes,if any
NOTE: I don’t have commit rights, I just want the latest code from repository overriding my local changes.
You need to do a
svn revert -R <directory>first.svn update --forceforces the update to overwrite unversioned files, not local changes to versioned files.