summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2015-03-18 18:15:13 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2015-03-23 16:32:44 +0000
commitc02108737c15651950cbf9e85e535be3800800a9 (patch)
treea0d140be290cf49b369475e17b1b6f11f261052c
parent72d106b681ebaf113c017a4c59e999de0bead319 (diff)
downloadmorph-c02108737c15651950cbf9e85e535be3800800a9.tar.gz
Functions for checking if ref is in branches/tags of a cached repo
Change-Id: I63f0d9da8b12930bd9539710429756a0821ce884
-rw-r--r--morphlib/cachedrepo.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/morphlib/cachedrepo.py b/morphlib/cachedrepo.py
index 23639043..03d184bd 100644
--- a/morphlib/cachedrepo.py
+++ b/morphlib/cachedrepo.py
@@ -123,6 +123,24 @@ class CachedRepo(object):
'''
return self._gitdir.read_file(filename, ref)
+ def tags_containing_ref(self, ref): # pragma: no cover
+ '''Check whether given ref is contained in any tags
+
+ Raises a gitdir.InvalidRefError if the ref is not found in the
+ repository.
+
+ '''
+ return self._gitdir.tags_containing_ref(ref)
+
+ def branches_containing_ref(self, ref): # pragma: no cover
+ '''Check whether given ref is contained in any branches
+
+ Raises a gitdir.InvalidRefError if the ref is not found in the
+ repository.
+
+ '''
+ return self._gitdir.branches_containing_ref(ref)
+
def list_files(self, ref, recurse=True): # pragma: no cover
'''Return filenames found in the tree pointed to by the given ref.