I have a website project with the main files in a root folder and an admin tool in a subfolder. The admin tool includes a few classes from the root folder.
I would like to keep separate version control over the 'site' (root) and the 'admin tool' (subfolder) with Git. With Git ignoring the subfolder in the root and a separate repository in the subfolder this works fine.
However, I like using Eclipse (4.4.2) as my Git GUI but Eclipse manages this on a project basis and when I try to create a new project in Eclipse of the subfolder it complains that this is not allowed because that folder is already part of another project (root folder).
Is there a way, just like in Git, to make Eclipse ignore a subfolder in a project so that I can create a separate project of the subfolder? Or should I approach the whole thing differently?