summaryrefslogtreecommitdiff
path: root/morphlib/git.py
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2012-09-06 18:17:02 +0100
committerJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-09-10 12:56:51 +0000
commit941adb363e4e0d548c9507e6a48d98990c692260 (patch)
tree87e031a466277c0e35645e52b4a82087aed02afc /morphlib/git.py
parent80fe58395087d15b2cee2584ea63f361dc12af10 (diff)
downloadmorph-941adb363e4e0d548c9507e6a48d98990c692260.tar.gz
Git rid of morphlib.git methods that are not needed
Diffstat (limited to 'morphlib/git.py')
-rw-r--r--morphlib/git.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/morphlib/git.py b/morphlib/git.py
index f5722ebe..0a4b01f4 100644
--- a/morphlib/git.py
+++ b/morphlib/git.py
@@ -150,14 +150,6 @@ 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'''