Home - Search - Site Map - Site Graph   |  Contact  
( Last Modified: 2008 November 02nd 04:11 PM )

Subversion Notes

Clients:

Smart SVN: a traditional GUI client

Tortoise SVN: a windows only, Explorer (Shell) extension.

Git: Using Git as a Client for a Subversion Repository - see Git-Svn


Using Subversion with Eclipse

The .svn folders that subversion places in every folder are a nuisance in Eclipse. They may be copied from the sources folders to the bin folder.

Subversion will then think that the bin folders are revision controlled (and out of date).

Option 1) Exludes in the source folders

To avoid this ignore the .svn folder in you eclipse projects. Do this by:

(right-click project) > Java Build Path > (For each source folder) > Exclusion Patterns: > add: > **/.svn/*

And Eclipse will no longer copy these folders to the bin folder.

Option 2) Use Git as you subversion client

Another alternative would be to use Git as a client, as it does not create .svn subfolders in every folder, see Git-Svn.

( Page Created: 2008 November 02nd 04:11 PM )