cvs2git currently drops mode information. I've been bitten by this behaviour twice already. The patch below fixes that, though not very cleanly. skimo -- git-cvs2git: propagate mode information Let cvs checkout in a temporary directory rather than using the pipe option to avoid loss of mode information. Signed-off-by: Sven Verdoolaege <skimo@liacs.nl> --- commit df97fd9b709bd927f15adbc1a90ddfcfa79c7895 tree 0f223f52fdf7d61d7d1df0da1137a542811d27f9 parent fdf95bf8d4d1182db579bd25fe5e25811084eaa6 author Sven Verdoolaege <skimo@kotnet.org> Sat, 18 Jun 2005 22:41:46 +0200 committer Sven Verdoolaege <skimo@kotnet.org> Sat, 18 Jun 2005 22:41:46 +0200 cvs2git.c | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/cvs2git.c b/cvs2git.c --- a/cvs2git.c +++ b/cvs2git.c @@ -196,10 +196,15 @@ static void update_file(char *line) } dir = strrchr(name, '/'); - if (dir) + if (dir) { printf("mkdir -p %.*s\n", (int)(dir - name), name); + printf("mkdir -p .git-tmp/%.*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 -N -d .git-tmp -r%s '%s/%s'\n", + cvsroot, version, cvsmodule, name); + printf("mv -f .git-tmp/%s/%s %s\n", cvsmodule, name, name); + printf("rm -rf .git-tmp\n"); printf("git-update-cache --add -- '%s'\n", name); } - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Sun Jun 19 06:53:46 2005
This archive was generated by hypermail 2.1.8 : 2005-06-19 06:53:47 EST