소스 검색

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

Félix Mattrat 9 년 전
부모
커밋
e7ccd22715
2개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 2
      dulwich/fastexport.py
  2. 1 1
      dulwich/tests/test_fastexport.py

+ 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())