Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions doc/source/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,12 @@ The GitDB is a pure-python implementation of the git object database. It is the

repo = Repo("path/to/repo", odbt=GitDB)

.. warning::
``GitDB`` may fail or become extremely slow when traversing trees in
repositories with very large commits (thousands of changed files in a
single commit). If you encounter ``RecursionError`` or excessive
slowness during tree traversal, switch to ``GitCmdObjectDB`` instead.


GitCmdObjectDB
==============
Expand Down
Loading