Przeglądaj źródła

Support passing merge heads to do_commit.

Jelmer Vernooij 13 lat temu
rodzic
commit
97ee883787
3 zmienionych plików z 32 dodań i 5 usunięć
  1. 2 0
      NEWS
  2. 12 5
      dulwich/repo.py
  3. 18 0
      dulwich/tests/test_repository.py

+ 2 - 0
NEWS

@@ -4,6 +4,8 @@
 
 
   * Repo.do_commit has a new argument 'ref'.
   * Repo.do_commit has a new argument 'ref'.
 
 
+  * Repo.do_commit has a new argument 'merge_heads'. (Jelmer Vernooij)
+
   * New ``Repo.clone`` method. (Jelmer Vernooij, #725369)
   * New ``Repo.clone`` method. (Jelmer Vernooij, #725369)
 
 
  CHANGES
  CHANGES

+ 12 - 5
dulwich/repo.py

@@ -1000,11 +1000,11 @@ class BaseRepo(object):
         else:
         else:
             raise ValueError(name)
             raise ValueError(name)
 
 
-    def do_commit(self, message, committer=None,
+    def do_commit(self, message=None, committer=None,
                   author=None, commit_timestamp=None,
                   author=None, commit_timestamp=None,
                   commit_timezone=None, author_timestamp=None,
                   commit_timezone=None, author_timestamp=None,
                   author_timezone=None, tree=None, encoding=None,
                   author_timezone=None, tree=None, encoding=None,
-                  ref='HEAD'):
+                  ref='HEAD', merge_heads=None):
         """Create a new commit.
         """Create a new commit.
 
 
         :param message: Commit message
         :param message: Commit message
@@ -1018,7 +1018,8 @@ class BaseRepo(object):
         :param tree: SHA1 of the tree root to use (if not specified the
         :param tree: SHA1 of the tree root to use (if not specified the
             current index will be committed).
             current index will be committed).
         :param encoding: Encoding
         :param encoding: Encoding
-        :param ref: Ref to commit to
+        :param ref: Optional ref to commit to (defaults to current branch)
+        :param merge_heads: Merge heads (defaults to .git/MERGE_HEADS)
         :return: New commit SHA1
         :return: New commit SHA1
         """
         """
         import time
         import time
@@ -1030,6 +1031,9 @@ class BaseRepo(object):
             if len(tree) != 40:
             if len(tree) != 40:
                 raise ValueError("tree must be a 40-byte hex sha string")
                 raise ValueError("tree must be a 40-byte hex sha string")
             c.tree = tree
             c.tree = tree
+        if merge_heads is None:
+            # FIXME: Read merge heads from .git/MERGE_HEADS
+            merge_heads = []
         # TODO: Allow username to be missing, and get it from .git/config
         # TODO: Allow username to be missing, and get it from .git/config
         if committer is None:
         if committer is None:
             raise ValueError("committer not set")
             raise ValueError("committer not set")
@@ -1052,14 +1056,17 @@ class BaseRepo(object):
         c.author_timezone = author_timezone
         c.author_timezone = author_timezone
         if encoding is not None:
         if encoding is not None:
             c.encoding = encoding
             c.encoding = encoding
+        if message is None:
+            # FIXME: Try to read commit message from .git/MERGE_MSG
+            raise ValueError("No commit message specified")
         c.message = message
         c.message = message
         try:
         try:
             old_head = self.refs[ref]
             old_head = self.refs[ref]
-            c.parents = [old_head]
+            c.parents = [old_head] + merge_heads
             self.object_store.add_object(c)
             self.object_store.add_object(c)
             ok = self.refs.set_if_equals(ref, old_head, c.id)
             ok = self.refs.set_if_equals(ref, old_head, c.id)
         except KeyError:
         except KeyError:
-            c.parents = []
+            c.parents = merge_heads
             self.object_store.add_object(c)
             self.object_store.add_object(c)
             ok = self.refs.add_if_new(ref, c.id)
             ok = self.refs.add_if_new(ref, c.id)
         if not ok:
         if not ok:

+ 18 - 0
dulwich/tests/test_repository.py

@@ -490,6 +490,24 @@ class BuildRepoTests(TestCase):
         self.assertEqual(commit_sha, r["refs/heads/new_branch"].id)
         self.assertEqual(commit_sha, r["refs/heads/new_branch"].id)
         self.assertEqual([new_branch_head], r[commit_sha].parents)
         self.assertEqual([new_branch_head], r[commit_sha].parents)
 
 
+    def test_commit_merge_heads(self):
+        r = self._repo
+        merge_1 = r.do_commit('commit to branch 2',
+             committer='Test Committer <test@nodomain.com>',
+             author='Test Author <test@nodomain.com>',
+             commit_timestamp=12395, commit_timezone=0,
+             author_timestamp=12395, author_timezone=0,
+             ref="refs/heads/new_branch")
+        commit_sha = r.do_commit('commit with merge',
+             committer='Test Committer <test@nodomain.com>',
+             author='Test Author <test@nodomain.com>',
+             commit_timestamp=12395, commit_timezone=0,
+             author_timestamp=12395, author_timezone=0,
+             merge_heads=[merge_1])
+        self.assertEquals(
+            [self._root_commit, merge_1],
+            r[commit_sha].parents)
+
     def test_stage_deleted(self):
     def test_stage_deleted(self):
         r = self._repo
         r = self._repo
         os.remove(os.path.join(r.path, 'a'))
         os.remove(os.path.join(r.path, 'a'))