* "git cvsimport" with branches?
@ 2005-07-17 8:40 Wolfgang Denk
2005-07-17 8:57 ` Alexey Nezhdanov
2005-07-17 9:37 ` Matthias Urlichs
0 siblings, 2 replies; 7+ messages in thread
From: Wolfgang Denk @ 2005-07-17 8:40 UTC (permalink / raw)
To: git
Is there a way to make "git cvsimport" create branches in git for any
branches it encounters in the CVS repository?
All my imports so far show just a linear line of development, and CVS
branch information seems lost.
Best regards,
Wolfgang Denk
--
Software Engineering: Embedded and Realtime Systems, Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de
Little known fact about Middle Earth: The Hobbits had a very sophi-
sticated computer network! It was a Tolkien Ring...
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: "git cvsimport" with branches?
2005-07-17 8:40 "git cvsimport" with branches? Wolfgang Denk
@ 2005-07-17 8:57 ` Alexey Nezhdanov
2005-07-17 9:37 ` Matthias Urlichs
1 sibling, 0 replies; 7+ messages in thread
From: Alexey Nezhdanov @ 2005-07-17 8:57 UTC (permalink / raw)
To: git
[-- Attachment #1: Type: text/plain, Size: 1638 bytes --]
В сообщении от Воскресенье 17 Июль 2005 12:40 Wolfgang Denk написал(a):
> Is there a way to make "git cvsimport" create branches in git for any
> branches it encounters in the CVS repository?
Heh. I was just preparing mail about the same problem.
It seems that git-cvsimport-script really don't likes branches in CVS.
I have attached simple script that demonstrates this.
On my machine it gives:
=============================
snake@home2:/tmp$ ./testscript
cvs checkout: Updating project
cvs add: scheduling file `a' for addition
cvs add: use `cvs commit' to add this file permanently
/tmp/20050717125452/cvsroot/project/a,v <-- a
initial revision: 1.1
cvs tag: Tagging .
T a
/tmp/20050717125452/cvsroot/project/a,v <-- a
new revision: 1.2; previous revision: 1.1
cvs update: Updating .
U a
/tmp/20050717125452/cvsroot/project/a,v <-- a
new revision: 1.1.2.1; previous revision: 1.1
cvs rlog: Logging project
New a: 2 bytes.
Tree ID 2ce1eef76631e82282e0f7f0cf9e6f3e9a4a0b1e
Committed patch 1 (origin)
Committing initial tree 2ce1eef76631e82282e0f7f0cf9e6f3e9a4a0b1e
Commit ID f7030e1c361f94b8847ef6ad88248a675c7ce5a9
Update a: 4 bytes.
Tree ID 9d3d025fff2e43c6a7b837056632b436c8e31dfe
Parent ID f7030e1c361f94b8847ef6ad88248a675c7ce5a9
Committed patch 2 (origin)
Commit ID 67889434ca9623ad91f8e81e6143fed9c4115a86
Switching from origin to branch1
usage: git-read-tree (<sha> | -m [-u] <sha1> [<sha2> [<sha3>]])
read-tree failed: 256
snake@home2:/tmp$
=============================
Is it a planned behaivoir or cvsimport script were just recently broken?
--
Respectfully
Alexey Nezhdanov
[-- Attachment #2: testscript --]
[-- Type: text/plain, Size: 339 bytes --]
#!/bin/sh
dirname=`date +"%Y%m%d%H%M%S"`
mkdir /tmp/$dirname
cd /tmp/$dirname
mkdir cvsroot
declare -x CVSROOT=/tmp/$dirname/cvsroot
cvs init
mkdir cvsroot/project
cvs co project
cd project
echo 1 >a
cvs add a
cvs ci -m 1 a
cvs tag -b branch1
echo 2 >>a
cvs ci -m 2 a
cvs update -r branch1
echo 3 >>a
cvs ci -m 3 a
git-cvsimport-script -v
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: "git cvsimport" with branches?
2005-07-17 8:40 "git cvsimport" with branches? Wolfgang Denk
2005-07-17 8:57 ` Alexey Nezhdanov
@ 2005-07-17 9:37 ` Matthias Urlichs
2005-07-17 10:15 ` Wolfgang Denk
2005-07-17 10:48 ` Alexey Nezhdanov
1 sibling, 2 replies; 7+ messages in thread
From: Matthias Urlichs @ 2005-07-17 9:37 UTC (permalink / raw)
To: git
Hi, Wolfgang Denk wrote:
> Is there a way to make "git cvsimport" create branches in git for any
> branches it encounters in the CVS repository?
>
That's what it does.
> All my imports so far show just a linear line of development, and CVS
> branch information seems lost.
Umm, exactly what did you do to visualize that? "gitk origin" obvioously
shows only one branch, because CVS doesn't have merge infe. Use
"gitk $(cat .git/revs/heads/*)" to show everything.
--
Matthias Urlichs | {M:U} IT Design @ m-u-it.de | smurf@smurf.noris.de
Disclaimer: The quote was selected randomly. Really. | http://smurf.noris.de
- -
"Any body of men who believe in hell will
persecute whenever they have the power."
[Joseph McCabe, "What Gods Cost Men"]
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: "git cvsimport" with branches?
2005-07-17 9:37 ` Matthias Urlichs
@ 2005-07-17 10:15 ` Wolfgang Denk
2005-07-17 10:48 ` Alexey Nezhdanov
1 sibling, 0 replies; 7+ messages in thread
From: Wolfgang Denk @ 2005-07-17 10:15 UTC (permalink / raw)
To: Matthias Urlichs; +Cc: git
In message <pan.2005.07.17.09.37.58.463540@smurf.noris.de> you wrote:
>
> > All my imports so far show just a linear line of development, and CVS
> > branch information seems lost.
>
> Umm, exactly what did you do to visualize that? "gitk origin" obvioously
> shows only one branch, because CVS doesn't have merge infe. Use
> "gitk $(cat .git/revs/heads/*)" to show everything.
s/v/f/
I see. Thanks for pointing out. Umm... is there a way to manually
adjust this later? I can identify the specific PatchSet(s) which
merge my CVS branches back into the trunk.
Best regards,
Wolfgang Denk
--
Software Engineering: Embedded and Realtime Systems, Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de
Either one of us, by himself, is expendable. Both of us are not.
-- Kirk, "The Devil in the Dark", stardate 3196.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: "git cvsimport" with branches?
2005-07-17 9:37 ` Matthias Urlichs
2005-07-17 10:15 ` Wolfgang Denk
@ 2005-07-17 10:48 ` Alexey Nezhdanov
2005-07-17 12:33 ` Alexey Nezhdanov
1 sibling, 1 reply; 7+ messages in thread
From: Alexey Nezhdanov @ 2005-07-17 10:48 UTC (permalink / raw)
To: git; +Cc: Matthias Urlichs
Sunday, 17 July 2005 13:37 Matthias Urlichs wrote:
> Hi, Wolfgang Denk wrote:
> > Is there a way to make "git cvsimport" create branches in git for any
> > branches it encounters in the CVS repository?
>
> That's what it does.
But it does not, at least in some cases.
See my previous mail:
http://marc.theaimsgroup.com/?l=git&m=112159075029007&w=2
It have simple script attached that reproduces the problem.
--
Respectfully
Alexey Nezhdanov
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2005-07-17 18:05 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-17 8:40 "git cvsimport" with branches? Wolfgang Denk
2005-07-17 8:57 ` Alexey Nezhdanov
2005-07-17 9:37 ` Matthias Urlichs
2005-07-17 10:15 ` Wolfgang Denk
2005-07-17 10:48 ` Alexey Nezhdanov
2005-07-17 12:33 ` Alexey Nezhdanov
2005-07-17 18:02 ` [offtopic]Re: " Alexey Nezhdanov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox