Browse Source

Add Index.commit.

Jelmer Vernooij 15 năm trước cách đây
mục cha
commit
4b4e4bc40f
2 tập tin đã thay đổi với 11 bổ sung2 xóa
  1. 10 0
      dulwich/index.py
  2. 1 2
      dulwich/repo.py

+ 10 - 0
dulwich/index.py

@@ -283,6 +283,14 @@ class Index(object):
         for name in mine:
             yield ((None, name), (None, self.get_mode(name)), (None, self.get_sha1(name)))
 
+    def commit(self, object_store):
+        """Create a new tree from an index.
+
+        :param object_store: Object store to save the tree in
+        :return: Root tree SHA
+        """
+        return commit_tree(object_store, self.iterblobs())
+
 
 def commit_tree(object_store, blobs):
     """Commit a new tree.
@@ -327,5 +335,7 @@ def commit_index(object_store, index):
 
     :param object_store: Object store to save the tree in
     :param index: Index file
+    :note: This function is deprecated, use index.commit() instead.
+    :return: Root tree sha.
     """
     return commit_tree(object_store, index.iterblobs())

+ 1 - 2
dulwich/repo.py

@@ -774,8 +774,7 @@ class BaseRepo(object):
                     break
                 i += 1
             history.insert(i, commit)
-            parents = commit.parents
-            pending_commits += parents
+            pending_commits += commit.parents
         history.reverse()
         return history