* [PATCH] Make cvs2git create tags
@ 2005-06-01 11:27 Sven Verdoolaege
2005-06-08 0:43 ` Petr Baudis
0 siblings, 1 reply; 2+ messages in thread
From: Sven Verdoolaege @ 2005-06-01 11:27 UTC (permalink / raw)
To: git
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;
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Make cvs2git create tags
2005-06-01 11:27 [PATCH] Make cvs2git create tags Sven Verdoolaege
@ 2005-06-08 0:43 ` Petr Baudis
0 siblings, 0 replies; 2+ messages in thread
From: Petr Baudis @ 2005-06-08 0:43 UTC (permalink / raw)
To: torvalds; +Cc: Sven Verdoolaege, git
Dear diary, on Wed, Jun 01, 2005 at 01:27:23PM CEST, I got a letter
where Sven Verdoolaege <skimo@liacs.nl> told me that...
> 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.
Hi,
this seems to have been forgotten along the way, and still appears to
be applicable to the latest git.
--
Petr "Pasky" Baudis
Stuff: http://pasky.or.cz/
C++: an octopus made by nailing extra legs onto a dog. -- Steve Taylor
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-06-08 0:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-01 11:27 [PATCH] Make cvs2git create tags Sven Verdoolaege
2005-06-08 0:43 ` Petr Baudis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).