One approach I've used is having symlinks in the submodule directory that point to the project's source files. For example, in a Drupal website:
/project
/drupal
/sites
If you're not familiar with Drupal, the sites directory would contain any additional modules, themes, or multisite information, and is typically located inside the Drupal root (in this case, /project/drupal). In your project, drupal would be replaced by your main codebase, and sites would contain your project-specific settings.
In this case, drupal is a submodule of project that points to the official repository. I added a symlink from /project/drupal/sites to /project/sites, so modifications to sites are checked in at the project level, but Drupal can still pretend it's a subdirectory.
Hopefully a similar setup could work for your project. One thing worth noting is that the symlink will make changes in sites appear in drupal as well, so you would probably want to add the symlink to your .gitignore file. The other downside is that you'd have to reconfigure the symlink for each machine you set up the project on, but that could easily be part of your deployment script.