From 17413029b0f780ac94c24ab2b5f527ded6abdd2a Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sat, 22 Aug 2015 16:39:34 +0200 Subject: docs(gitdb): discourage usage of GitDB type --- gitdb/db/git.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gitdb/db/git.py b/gitdb/db/git.py index a4f6f54..7a43d72 100644 --- a/gitdb/db/git.py +++ b/gitdb/db/git.py @@ -22,7 +22,11 @@ __all__ = ('GitDB', ) class GitDB(FileDBBase, ObjectDBW, CompoundDB): """A git-style object database, which contains all objects in the 'objects' - subdirectory""" + subdirectory + + ``IMPORTANT``: The usage of this implementation is highly discouraged as it fails to release file-handles. + This can be a problem with long-running processes and/or big repositories. + """ # Configuration PackDBCls = PackedDB LooseDBCls = LooseObjectDB -- cgit v1.2.1