Browse Source

[PATCH] git-cvs2git: create tags

cvsps seems to put a space after the tag name, so we remove it first.
maint
Sven Verdoolaege 20 years ago committed by Linus Torvalds
parent
commit
32798c707e
  1. 7
      cvs2git.c

7
cvs2git.c

@ -115,6 +115,7 @@ static void commit(void) @@ -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) @@ -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;

Loading…
Cancel
Save