How do I check out an SVN project into Eclipse as a Java project?

Here are the steps: Install the subclipse plugin (provides svn connectivity in eclipse) and connect to the repository. Instructions here: http://subclipse.tigris.org/install.html Go to File->New->Other->Under the SVN category, select Checkout Projects from SVN. Select your project’s root folder and select checkout as a project in the workspace. It seems you are checking the .project file into … Read more

Rolling back bad changes with svn in Eclipse

In Eclipse Ganymede (Subclipse) Select project/file that contains bad change, and from pop-up menu choose: Team -> Show History Revisions related to that project/file will be shown in History tab. Find revision where “bad changes” were committed and from pop-up menu choose: Revert Changes from Revision X This will merge changes in file(s) modified within … Read more

How to change credentials for SVN repository in Eclipse?

http://subclipse.tigris.org/wiki/PluginFAQ#head-d507c29676491f4419997a76735feb6ef0aa8cf8: Usernames and passwords Subclipse does not collect or store username and password credentials when defining a repository. This is because the JavaHL and SVNKit client adapters are intelligent enough to prompt you for this information when they need to — including when your password has changed. You can also allow the adapter to cache … Read more