summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e69a19f)
raw | patch | inline | side by side (parent: e69a19f)
author | Linus Torvalds <torvalds@ppc970.osdl.org> | |
Tue, 24 May 2005 16:36:33 +0000 (09:36 -0700) | ||
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | |
Tue, 24 May 2005 16:36:33 +0000 (09:36 -0700) |
This escapes '$' characters in <<-handling, and gives preference to
the new branch when cvsps incorrectly reports a commit as originating
on an old branch.
the new branch when cvsps incorrectly reports a commit as originating
on an old branch.
cvs2git.c | patch | blob | history |
diff --git a/cvs2git.c b/cvs2git.c
index 2ac53ea828333dfffd7f23dd97688120c2d76255..462a8736c8c8ee387896fba031d4ef4e5d5c4f13 100644 (file)
--- a/cvs2git.c
+++ b/cvs2git.c
if (!strcmp(src_branch, "HEAD"))
src_branch = "master";
printf("ln -sf refs/heads/'%s' .git/HEAD\n", src_branch);
+
+ /*
+ * Even if cvsps claims an ancestor, we'll let the new
+ * branch name take precedence if it already exists
+ */
+ if (*ancestor) {
+ src_branch = branch;
+ if (!strcmp(src_branch, "HEAD"))
+ src_branch = "master";
+ printf("[ -e .git/refs/heads/'%s' ] && ln -sf refs/heads/'%s' .git/HEAD\n",
+ src_branch, src_branch);
+ }
+
printf("git-read-tree -m HEAD || exit 1\n");
printf("git-checkout-cache -f -u -a\n");
}
{
const char *cmit_parent = initial_commit ? "" : "-p HEAD";
const char *dst_branch;
+ int i;
printf("tree=$(git-write-tree)\n");
- printf("cat > .cmitmsg <<EOFMSG\n%s\nEOFMSG\n", log);
+ printf("cat > .cmitmsg <<EOFMSG\n");
+
+ /* Escape $ characters, and remove control characters */
+ for (i = 0; i < loglen; i++) {
+ unsigned char c = log[i];
+
+ switch (c) {
+ case '$':
+ putchar('\\');
+ break;
+ case 0 ... 31:
+ if (c == '\n' || c == '\t')
+ break;
+ case 128 ... 159:
+ continue;
+ }
+ putchar(c);
+ }
+ printf("\nEOFMSG\n");
printf("commit=$(cat .cmitmsg | git-commit-tree $tree %s)\n", cmit_parent);
dst_branch = branch;