summaryrefslogtreecommitdiff
path: root/morphlib/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/git.py')
-rw-r--r--morphlib/git.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/morphlib/git.py b/morphlib/git.py
index 0a4b01f4..f5722ebe 100644
--- a/morphlib/git.py
+++ b/morphlib/git.py
@@ -150,6 +150,14 @@ def checkout_ref(runcmd, gitdir, ref):
'''Checks out a specific ref/SHA1 in a git working tree.'''
runcmd(['git', 'checkout', ref], cwd=gitdir)
+def ref_exists(runcmd, gitdir, ref):
+ '''Check if specific ref exists locally or in a remote.'''
+ try:
+ runcmd(['git', 'show-ref', '--quiet', ref], cwd=gitdir)
+ except cliapp.AppException:
+ return False
+ return True
+
def reset_workdir(runcmd, gitdir):
'''Removes any differences between the current commit '''
'''and the status of the working directory'''