Kaynağa Gözat

Silently ignore directories passed to Repo.stage(). Fixes #564

Jelmer Vernooij 7 yıl önce
ebeveyn
işleme
2a6d5bb489
3 değiştirilmiş dosya ile 20 ekleme ve 3 silme
  1. 5 0
      NEWS
  2. 9 3
      dulwich/repo.py
  3. 6 0
      dulwich/tests/test_repository.py

+ 5 - 0
NEWS

@@ -7,6 +7,11 @@
   * Fix setting of origin in config when non-standard origin is passed into
     ``Repo.clone``. (Kenneth Lareau, #565)
 
+ IMPROVEMENTS
+
+  * Silently ignored directories in ``Repo.stage``.
+    (Jelmer Vernooij, #564)
+
  API CHANGES
 
   * GitFile now raises ``FileLocked`` when encountering a lock

+ 9 - 3
dulwich/repo.py

@@ -869,9 +869,15 @@ class Repo(BaseRepo):
                 except KeyError:
                     pass  # already removed
             else:
-                blob = blob_from_path_and_stat(full_path, st)
-                self.object_store.add_object(blob)
-                index[tree_path] = index_entry_from_stat(st, blob.id, 0)
+                if not stat.S_ISDIR(st.st_mode):
+                    blob = blob_from_path_and_stat(full_path, st)
+                    self.object_store.add_object(blob)
+                    index[tree_path] = index_entry_from_stat(st, blob.id, 0)
+                else:
+                    try:
+                        del index[tree_path]
+                    except KeyError:
+                        pass
         index.write()
 
     def clone(self, target_path, mkdir=True, bare=False,

+ 6 - 0
dulwich/tests/test_repository.py

@@ -880,6 +880,12 @@ class BuildRepoRootTests(TestCase):
         r.stage(['a'])
         r.stage(['a'])  # double-stage a deleted path
 
+    def test_stage_directory(self):
+        r = self._repo
+        os.mkdir(os.path.join(r.path, 'c'))
+        r.stage(['c'])
+        self.assertEqual(['a'], list(r.open_index()))
+
     @skipIf(sys.platform == 'win32' and sys.version_info[:2] >= (3, 6),
             'tries to implicitly decode as utf8')
     def test_commit_no_encode_decode(self):