With git filter-branch --subdirectory-filter you can transform a subdirectory from the current repository into a repository on its own. What I'd like to do, however, is an opposite thing: create a repository that will contain the full contents of the current repository as a subdirectory, keeping the complete history as if they were always in that subdirectory. I don't want to use submodules, because I'd like that directory to be a completely integral part of the repository.
Background: I was tasked with writing a simple script, but the scope of task has been expanded, so now that script becomes just a subdirectory in a bigger project. It also has no point of living on it's own, so a solution without submodules is preferred.