From 4cbc5ba891c9367690b9f98fc75c7651ab7d84f9 Mon Sep 17 00:00:00 2001 From: Robin Green Date: Sun, 12 Sep 2010 09:29:02 +0100 Subject: [PATCH] Don't delete the git-fast-import file afterwards This lets the user import it into another VCS which supports git-fast-import --- wp2git.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp2git.d b/wp2git.d index 57965c3..6875222 100644 --- a/wp2git.d +++ b/wp2git.d @@ -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;