summaryrefslogtreecommitdiff
path: root/morphlib
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2012-09-13 13:25:44 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2012-09-14 19:45:01 +0100
commitf7e02d76ec22bda2a0dfcd24f44a4df8544fae02 (patch)
tree23ae6933053f3917346976f878a317f749b939b7 /morphlib
parent3911c0bea5654a4de7cd9121d89c7f9bc69b0172 (diff)
downloadmorph-f7e02d76ec22bda2a0dfcd24f44a4df8544fae02.tar.gz
morph merge: Don't make a merge commit if only the refs changed
'git commit' fails if there are no changes in any case.
Diffstat (limited to 'morphlib')
-rw-r--r--morphlib/git.py11
-rw-r--r--morphlib/plugins/branch_and_merge_plugin.py13
2 files changed, 21 insertions, 3 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'''
diff --git a/morphlib/plugins/branch_and_merge_plugin.py b/morphlib/plugins/branch_and_merge_plugin.py
index c81c95c8..75935b72 100644
--- a/morphlib/plugins/branch_and_merge_plugin.py
+++ b/morphlib/plugins/branch_and_merge_plugin.py
@@ -685,6 +685,8 @@ class BranchAndMergePlugin(cliapp.Plugin):
merge_chunk(old_ci, ci)
if changed:
self.save_morphology(to_repo, si['morph'], stratum)
+ self.app.runcmd(['git', 'add', si['morph'] + '.morph'],
+ cwd=to_repo)
from_root_dir = self.find_repository(from_branch_dir, root_repo)
to_root_dir = self.find_repository(to_branch_dir, root_repo)
@@ -718,11 +720,16 @@ class BranchAndMergePlugin(cliapp.Plugin):
merge_stratum(old_si, si)
if changed:
self.save_morphology(to_root_dir, name, morphology)
+ self.app.runcmd(['git', 'add', f], cwd=to_root_dir)
for repo_dir in dirty_repos:
- msg = "Merge system branch '%s'" % from_branch
- self.app.runcmd(['git', 'commit', '--all', '--message=%s' % msg],
- cwd=repo_dir)
+ # Repo will often turn out to not be dirty: if the changes we
+ # merged only updated refs to the system branch, we will have
+ # changed them back again so that the index will now be empty.
+ if morphlib.git.index_has_changes(self.app.runcmd, repo_dir):
+ msg = "Merge system branch '%s'" % from_branch
+ self.app.runcmd(['git', 'commit', '--all', '-m%s' % msg],
+ cwd=repo_dir)
def build(self, args):
if len(args) != 1: