mirror of
https://github.com/newren/git-filter-repo.git
synced 2024-11-17 03:26:08 +00:00
Work around git-fast-export bug by explicitly specifying --topo-order
This commit is contained in:
parent
0ce82837e2
commit
32d680bd9b
@ -322,7 +322,7 @@ class FastExportFilter(object):
|
||||
raise SystemExit("Could not parse line: '%s'" % self.nextline)
|
||||
|
||||
def FastExportOutput(source_repo, extra_args = []):
|
||||
return Popen(["git", "fast-export", "--all"] + extra_args,
|
||||
return Popen(["git", "fast-export", "--all", "--topo-order"] + extra_args,
|
||||
stdout = PIPE,
|
||||
cwd = source_repo).stdout
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user