summaryrefslogtreecommitdiff
path: root/morphlib/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/git.py')
-rw-r--r--morphlib/git.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/morphlib/git.py b/morphlib/git.py
index 9ab98ad0..5862ef9b 100644
--- a/morphlib/git.py
+++ b/morphlib/git.py
@@ -196,6 +196,17 @@ def checkout_ref(runcmd, gitdir, ref):
'''Checks out a specific ref/SHA1 in a git working tree.'''
runcmd(['git', 'checkout', ref], cwd=gitdir)
+
+def index_has_changes(runcmd, gitdir):
+ '''Returns True if there are no staged changes to commit'''
+ try:
+ runcmd(['git', 'diff-index', '--cached', '--quiet',
+ '--ignore-submodules', 'HEAD'], cwd=gitdir)
+ except cliapp.AppException:
+ return True
+ return False
+
+
def reset_workdir(runcmd, gitdir):
'''Removes any differences between the current commit '''
'''and the status of the working directory'''