I have a large project but I need only some folders in my svn repository.
Now these are the first two levels of my projects structure
folder_1
subfolder_1.1
subfolder_1.2
folder_2
subfolder_2.1
subfolder_2.2
subfolder_2.3
folder_3
subfolder_3.1
subfolder_3.2
I only need
folder_1
subfolder_1.1
folder_3
subfolder_3.2
and their subfolders of course under version control.
How do I import only these folders in the new created svn repository?
How do I ignore changes in any other folder on future commits?
Thanks in advance for any hint, step by step instructions greatly appreciated as I am not really experienced in handling svn administration.
EDIT: To clarify what I need to do: create a new repository (already done), import the folders as above, check them out using a svn client (no big deal) and make sure that files from other folders that are not under version vontrol (e. g. stuff from folder_2) are ignored by SVN on commit.