2
0
Эх сурвалжийг харах

when emitting a fastimport.FileModifyCommand referencing a Blob the marker need to be prefixed by :

Félix Mattrat 9 жил өмнө
parent
commit
e7ccd22715

+ 4 - 2
dulwich/fastexport.py

@@ -87,8 +87,10 @@ class GitFastExporter(object):
             if old_path != new_path and old_path is not None:
                 yield commands.FileRenameCommand(old_path, new_path)
             if old_mode != new_mode or old_hexsha != new_hexsha:
-                yield commands.FileModifyCommand(new_path, new_mode, marker,
-                    None)
+                prefixed_marker = b':%s' %  (marker,)
+                yield commands.FileModifyCommand(
+                    new_path, new_mode, prefixed_marker, None
+                )
 
     def _export_commit(self, commit, ref, base_tree=None):
         file_cmds = list(self._iter_files(base_tree, commit.tree))

+ 1 - 1
dulwich/tests/test_fastexport.py

@@ -84,7 +84,7 @@ author Jelmer <jelmer@host> 1271345553 +0000
 committer Jelmer <jelmer@host> 1271345553 +0000
 data 3
 msg
-M 644 1 foo
+M 644 :1 foo
 """, self.stream.getvalue())