You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lethe/lethe/__init__.py

16 lines
346 B
Python

"""
Git snapshotting tool
"""
from .lethe import (
snap, snap_ref, snap_tree, find_merge_base, deref_symref,
update_ref, commit_tree, get_tree, get_commit, get_obj,
shorten_hash, get_root, get_latest_commit,
push_ref, fetch_ref,
)
from .endpoints import main
from .VERSION import __version__
__author__ = 'Jan Petykeiwicz'