You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm planning to use GitPython as a database for my next project and have some further questions that your documentation doesn't cover. The idea is to have a bare repository with a hierarchical structure (using git trees) and UUID named blobs for the data.
Is it possible to commit stream data into a bare repository? The documentation states:
Our index implementation allows to stream date into the index,
which is useful for bare repositories that do not have a working tree.
Is there an example for that?
What is the simplest workflow for creating new Blob objects?
The whole GitPython tutorial is rather high-level and just show how to work with existing Blob objects. But what is the preferred way to create new ones? What is the first step to get new data into the git store?
The text was updated successfully, but these errors were encountered:
I'm planning to use
GitPython
as a database for my next project and have some further questions that your documentation doesn't cover. The idea is to have a bare repository with a hierarchical structure (using git trees) and UUID named blobs for the data.Is there an example for that?
Blob
objects?The whole
GitPython
tutorial is rather high-level and just show how to work with existingBlob
objects. But what is the preferred way to create new ones? What is the first step to get new data into the git store?The text was updated successfully, but these errors were encountered: