Kaynağa Gözat

Fix porcelain.reset to not ignore committish argument.

Koen Martens 8 yıl önce
ebeveyn
işleme
8d3ba09974
3 değiştirilmiş dosya ile 28 ekleme ve 1 silme
  1. 3 0
      NEWS
  2. 1 1
      dulwich/porcelain.py
  3. 24 0
      dulwich/tests/test_porcelain.py

+ 3 - 0
NEWS

@@ -20,6 +20,9 @@
 
  BUG FIXES
 
+  * Fix ``porcelain.reset`` to respect the comittish argument.
+    (Koen Martens)
+
   * Fix handling of ``Commit.tree`` being set to an actual
    tree object rather than a tree id. (Jelmer Vernooij)
 

+ 1 - 1
dulwich/porcelain.py

@@ -628,7 +628,7 @@ def reset(repo, mode, committish="HEAD"):
 
     with open_repo_closing(repo) as r:
         tree = r[committish].tree
-        r.reset_index()
+        r.reset_index(tree)
 
 
 def push(repo, remote_location, refspecs=None,

+ 24 - 0
dulwich/tests/test_porcelain.py

@@ -444,6 +444,30 @@ class ResetTests(PorcelainTestCase):
 
         self.assertEqual([], changes)
 
+    def test_hard_commit(self):
+        with open(os.path.join(self.repo.path, 'foo'), 'w') as f:
+            f.write("BAR")
+        porcelain.add(self.repo.path, paths=["foo"])
+        sha = porcelain.commit(self.repo.path, message=b"Some message",
+                committer=b"Jane <jane@example.com>",
+                author=b"John <john@example.com>")
+
+        with open(os.path.join(self.repo.path, 'foo'), 'wb') as f:
+            f.write(b"BAZ")
+        porcelain.add(self.repo.path, paths=["foo"])
+        porcelain.commit(self.repo.path, message=b"Some other message",
+                committer=b"Jane <jane@example.com>",
+                author=b"John <john@example.com>")
+
+        porcelain.reset(self.repo, "hard", sha)
+
+        index = self.repo.open_index()
+        changes = list(tree_changes(self.repo,
+                       index.commit(self.repo.object_store),
+                       self.repo[sha].tree))
+
+        self.assertEqual([], changes)
+
 
 class PushTests(PorcelainTestCase):