Work around git-fast-export bug by explicitly specifying --topo-order

This commit is contained in:
Elijah Newren 2009-02-10 16:48:45 -07:00
parent 0ce82837e2
commit 32d680bd9b

View File

@ -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