Before passing the code to the Subversion repository, we always set the svn: ignore property in the directory to prevent some files and directories from being checked. We always exclude IDE project files and target / directory. Instead of keeping all exceptions in mind the whole time it was useful to put them all in a file and reference the file with the -F option:
svn propset svn:ignore -F .svnignore .
Put this file in the project folder
.svnignore target
source share