summaryrefslogtreecommitdiff
path: root/cvs2git.c
diff options
context:
space:
mode:
Diffstat (limited to 'cvs2git.c')
-rw-r--r--cvs2git.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/cvs2git.c b/cvs2git.c
index 97b4300519..d438475d03 100644
--- a/cvs2git.c
+++ b/cvs2git.c
@@ -193,7 +193,10 @@ static void update_file(char *line)
if (dir)
printf("mkdir -p %.*s\n", (int)(dir - name), name);
- printf("cvs -q -d %s checkout -r%s -p '%s/%s' > '%s'\n", cvsroot, version, cvsmodule, name, name);
+ printf("cvs -q -d %s checkout -d .git-tmp -r%s '%s/%s'\n",
+ cvsroot, version, cvsmodule, name);
+ printf("mv -f .git-tmp/%s %s\n", dir ? dir+1 : name, name);
+ printf("rm -rf .git-tmp\n");
printf("git-update-cache --add -- '%s'\n", name);
}