diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-07-07 23:37:19 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-07-07 23:37:19 +0200 |
commit | 023dc1244c02d415bb964eeb0b51b257523897df (patch) | |
tree | 2ebffe75f484d48a8fdc2c282a457cf77a86c3cf /git/db/compat.py | |
parent | 2baf8a493618463d2bb41b8e96c8304bf48e2c8a (diff) | |
parent | f4f330f8588dacd43af6513e1e1e1a50237da1e7 (diff) | |
download | gitpython-023dc1244c02d415bb964eeb0b51b257523897df.tar.gz |
Merge branch 'dulwich'
Diffstat (limited to 'git/db/compat.py')
-rw-r--r-- | git/db/compat.py | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/git/db/compat.py b/git/db/compat.py index 767ab5e0..771a1e77 100644 --- a/git/db/compat.py +++ b/git/db/compat.py @@ -4,14 +4,10 @@ # the New BSD License: http://www.opensource.org/licenses/bsd-license.php """Module providing adaptors to maintain backwards compatability""" -class RepoCompatibilityInterface(object): +class RepoCompatibilityInterfaceNoBare(object): """Interface to install backwards compatability of the new complex repository types with the previous, all in one, repository.""" - @property - def bare(self): - return self.is_bare - def rev_parse(self, *args, **kwargs): return self.resolve_object(*args, **kwargs) @@ -28,4 +24,22 @@ class RepoCompatibilityInterface(object): return self.head.reference def __repr__(self): + """Return the representation of the repository, the way it used to be""" return '<git.Repo "%s">' % self.git_dir + + @property + def branches(self): + return self.heads + + +class RepoCompatibilityInterface(RepoCompatibilityInterfaceNoBare): + """Interface to install backwards compatability of the new complex repository + types with the previous, all in one, repository.""" + + @property + def bare(self): + return self.is_bare + + @property + def refs(self): + return self.references |