X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=cvs2git.c;h=97b4300519d24120a518a69a3f559ca0145d1435;hb=32798c707e701a7b0b7c19b469a1fcb57bda1f66;hp=06dd74b36840824d910cab72965b871f819a494e;hpb=af3f929f9546268ede788b4217ff0b6a655ab62a;p=git.git diff --git a/cvs2git.c b/cvs2git.c index 06dd74b3..97b43005 100644 --- a/cvs2git.c +++ b/cvs2git.c @@ -115,6 +115,7 @@ static void commit(void) { const char *cmit_parent = initial_commit ? "" : "-p HEAD"; const char *dst_branch; + char *space; int i; printf("tree=$(git-write-tree)\n"); @@ -147,6 +148,12 @@ static void commit(void) printf("echo $commit > .git/refs/heads/'%s'\n", dst_branch); + space = strchr(tag, ' '); + if (space) + *space = 0; + if (strcmp(tag, "(none)")) + printf("echo $commit > .git/refs/tags/'%s'\n", tag); + printf("echo 'Committed (to %s):' ; cat .cmitmsg; echo\n", dst_branch); *date = 0;