Don't delete the git-fast-import file afterwards

This lets the user import it into another VCS which supports git-fast-import
This commit is contained in:
Robin Green 2010-09-12 09:29:02 +01:00 committed by greenrd
parent 3c31925bc7
commit 4cbc5ba891
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ int main(string[] args)
system("git init");
system("git fast-import --date-format=rfc2822 < fast-import-data");
std.file.remove("fast-import-data");
// std.file.remove("fast-import-data");
system("git reset --hard");
return 0;