The current version of cvs2git doesn't propagate tags. Trivial patch below. skimo -- cvs2git: create tags cvsps seems to put a space after the tag name, so we remove it first. --- commit 713a66bd98e65237cff37e0dfa68573973a60468 tree 07c5104ebeb6f189dc11eee3263966735307cfac parent 324a7234776aafdc594942f1e5ef8e0f6358c0a5 author Sven Verdoolaege <skimo@liacs.nl> Wed, 01 Jun 2005 13:15:06 +0200 committer Sven Verdoolaege <skimo@liacs.nl> Wed, 01 Jun 2005 13:15:06 +0200 cvs2git.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/cvs2git.c b/cvs2git.c --- 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; - 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 Wed Jun 01 21:27:53 2005
This archive was generated by hypermail 2.1.8 : 2005-06-01 21:27:54 EST