Is it possible to create a Git repository that saves its objects into some database (SQLite, MongoDB, etc.) instead of on a filesystem?
It looks like I could probably store a full repository in MongoDB using something like GridFS.
Wondering if there is a way to make it so git push origin master
reads from the database and acts just like the file system.
Is something remotely like that possible? Or must git be filesystem only?