summaryrefslogtreecommitdiff
path: root/git/refs/reference.py
blob: 135277e650f8e957319f0fda8ef2676c0abd3d1d (plain)
1
2
3
4
5
6
7
8

from gitdb.ref.reference import Reference as GitDB_Reference
from git.util import RepoAliasMixin
__all__ = ["Reference"]

class Reference(GitDB_Reference, RepoAliasMixin):
	__slots__ = tuple()
	pass