module documentation

Fast export/import functionality.

Class GitFastExporter Generate a fast-export output stream for Git objects.
Class GitImportProcessor An import processor that imports into a Git repository using Dulwich.
Function split_email Split email address from name.
def split_email(text: bytes) -> tuple[bytes, bytes]: ΒΆ

Split email address from name.

Parameters
text:bytesFull name and email (e.g. b"John Doe <[email protected]>")
Returns
tuple[bytes, bytes]Tuple of (name, email)