* [MinGW port] Unable to repack on Clearcase dynamic views
@ 2007-05-30 14:42 Nguyen Thai Ngoc Duy
2007-05-30 15:11 ` Paolo Teti
2007-05-30 15:28 ` Johannes Sixt
0 siblings, 2 replies; 14+ messages in thread
From: Nguyen Thai Ngoc Duy @ 2007-05-30 14:42 UTC (permalink / raw)
To: Git Mailing List
Hi,
On clearcase dynamic views (kind of virtual drives), "mv -f a b" won't
work if "a" is read-only. Because git-repack.sh removes all write
permission before moving packs, it fails on clearcase dynamic views.
My approach is rather ugly. Does anyone have a better solution?
diff --git a/git-repack.sh b/git-repack.sh
index acb78ba..76a9525 100755
--- a/git-repack.sh
+++ b/git-repack.sh
@@ -86,10 +86,22 @@ else
mv -f "$PACKTMP-$name.idx" "$PACKDIR/pack-$name.idx" &&
test -f "$PACKDIR/pack-$name.pack" &&
test -f "$PACKDIR/pack-$name.idx" || {
- echo >&2 "Couldn't replace the existing pack with updated one."
- echo >&2 "The original set of packs have been saved as"
- echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
- exit 1
+ # Clearcase dynamic views do not allow to move file without write permission
+ # Try the second time with write allowed
+ chmod u+w "$PACKTMP-$name.pack"
+ chmod u+w "$PACKTMP-$name.idx"
+
+ mv -f "$PACKTMP-$name.pack" "$PACKDIR/pack-$name.pack" &&
+ mv -f "$PACKTMP-$name.idx" "$PACKDIR/pack-$name.idx" &&
+ test -f "$PACKDIR/pack-$name.pack" &&
+ test -f "$PACKDIR/pack-$name.idx" || {
+ echo >&2 "Couldn't replace the existing pack with updated one."
+ echo >&2 "The original set of packs have been saved as"
+ echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
+ exit 1
+ }
+ chmod a-w "$PACKDIR/pack-$name.pack"
+ chmod a-w "$PACKDIR/pack-$name.idx"
}
rm -f "$PACKDIR/old-pack-$name.pack" "$PACKDIR/old-pack-$name.idx"
fi
--
Duy
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-30 14:42 [MinGW port] Unable to repack on Clearcase dynamic views Nguyen Thai Ngoc Duy
@ 2007-05-30 15:11 ` Paolo Teti
2007-05-30 15:33 ` Nguyen Thai Ngoc Duy
2007-05-30 15:28 ` Johannes Sixt
1 sibling, 1 reply; 14+ messages in thread
From: Paolo Teti @ 2007-05-30 15:11 UTC (permalink / raw)
To: Nguyen Thai Ngoc Duy; +Cc: Git Mailing List
2007/5/30, Nguyen Thai Ngoc Duy <pclouds@gmail.com>:
> Hi,
>
> On clearcase dynamic views (kind of virtual drives), "mv -f a b" won't
> work if "a" is read-only. Because git-repack.sh removes all write
> permission before moving packs, it fails on clearcase dynamic views.
>
> My approach is rather ugly. Does anyone have a better solution?
I hate clearcase, but honestly I have used it forced by a customer..
The real problem is why you need to do a repack in a CC view, but..
to move a file in a Clearcase view you have to use 'cleartool mv ...'
(or 'cleartool relocate') and not the UNIX mv command...
..and he directory where the element to be moved or renamed resides
must be checked out.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-30 14:42 [MinGW port] Unable to repack on Clearcase dynamic views Nguyen Thai Ngoc Duy
2007-05-30 15:11 ` Paolo Teti
@ 2007-05-30 15:28 ` Johannes Sixt
[not found] ` <fcaeb9bf0705300840w221c46c1y742388fc9e61c2fa@mail.gmail.com>
1 sibling, 1 reply; 14+ messages in thread
From: Johannes Sixt @ 2007-05-30 15:28 UTC (permalink / raw)
To: git
Nguyen Thai Ngoc Duy wrote:
> On clearcase dynamic views (kind of virtual drives), "mv -f a b" won't
> work if "a" is read-only. Because git-repack.sh removes all write
> permission before moving packs, it fails on clearcase dynamic views.
>
> My approach is rather ugly. Does anyone have a better solution?
If you do two 'git repack -a -d' in a row, the second one fails even
with this patch, right? To fix it, you must 'chmod u+w' in the for-loop
right above this hunk, too.
Since you 'chmod a-w' after the mv, why not just remove the first ones
before the first mv? Then you can get rid of the second try.
-- Hannes
>
> diff --git a/git-repack.sh b/git-repack.sh
> index acb78ba..76a9525 100755
> --- a/git-repack.sh
> +++ b/git-repack.sh
> @@ -86,10 +86,22 @@ else
> mv -f "$PACKTMP-$name.idx" "$PACKDIR/pack-$name.idx" &&
> test -f "$PACKDIR/pack-$name.pack" &&
> test -f "$PACKDIR/pack-$name.idx" || {
> - echo >&2 "Couldn't replace the existing pack with updated one."
> - echo >&2 "The original set of packs have been saved as"
> - echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
> - exit 1
> + # Clearcase dynamic views do not allow to move file without write permission
> + # Try the second time with write allowed
> + chmod u+w "$PACKTMP-$name.pack"
> + chmod u+w "$PACKTMP-$name.idx"
> +
> + mv -f "$PACKTMP-$name.pack" "$PACKDIR/pack-$name.pack" &&
> + mv -f "$PACKTMP-$name.idx" "$PACKDIR/pack-$name.idx" &&
> + test -f "$PACKDIR/pack-$name.pack" &&
> + test -f "$PACKDIR/pack-$name.idx" || {
> + echo >&2 "Couldn't replace the existing pack with updated one."
> + echo >&2 "The original set of packs have been saved as"
> + echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
> + exit 1
> + }
> + chmod a-w "$PACKDIR/pack-$name.pack"
> + chmod a-w "$PACKDIR/pack-$name.idx"
> }
> rm -f "$PACKDIR/old-pack-$name.pack" "$PACKDIR/old-pack-$name.idx"
> fi
>
> --
> Duy
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-30 15:11 ` Paolo Teti
@ 2007-05-30 15:33 ` Nguyen Thai Ngoc Duy
2007-05-30 16:30 ` Paolo Teti
2007-05-30 18:28 ` Robin Rosenberg
0 siblings, 2 replies; 14+ messages in thread
From: Nguyen Thai Ngoc Duy @ 2007-05-30 15:33 UTC (permalink / raw)
To: Paolo Teti; +Cc: Git Mailing List, Matthias Lederhofer, Junio C Hamano
On 5/30/07, Paolo Teti <paolo.teti@gmail.com> wrote:
> 2007/5/30, Nguyen Thai Ngoc Duy <pclouds@gmail.com>:
> > Hi,
> >
> > On clearcase dynamic views (kind of virtual drives), "mv -f a b" won't
> > work if "a" is read-only. Because git-repack.sh removes all write
> > permission before moving packs, it fails on clearcase dynamic views.
> >
> > My approach is rather ugly. Does anyone have a better solution?
>
> I hate clearcase, but honestly I have used it forced by a customer..
> The real problem is why you need to do a repack in a CC view, but..
I don't like it either :) But you remind me the Matthias' workdir
patchset. With that I can move out .git to a real drive/filesystem
(which should also give better performance).
I think it's a valid use case. Anyone remember why Matthias' patchset
was dropped?
It was last mentioned in
http://article.gmane.org/gmane.comp.version-control.git/43041
Junio, Matthias? May I help?
>
> to move a file in a Clearcase view you have to use 'cleartool mv ...'
> (or 'cleartool relocate') and not the UNIX mv command...
'cleartool mv' is used for clearcase-manages files. My git repository
are private files.
>
> ..and he directory where the element to be moved or renamed resides
> must be checked out.
>
--
Duy
^ permalink raw reply [flat|nested] 14+ messages in thread
* Fwd: [MinGW port] Unable to repack on Clearcase dynamic views
[not found] ` <fcaeb9bf0705300840w221c46c1y742388fc9e61c2fa@mail.gmail.com>
@ 2007-05-30 15:43 ` Nguyen Thai Ngoc Duy
0 siblings, 0 replies; 14+ messages in thread
From: Nguyen Thai Ngoc Duy @ 2007-05-30 15:43 UTC (permalink / raw)
To: Git Mailing List
I'm sorry, forgot to CC the list.
---------- Forwarded message ----------
From: Nguyen Thai Ngoc Duy <pclouds@gmail.com>
Date: May 30, 2007 11:40 AM
Subject: Re: [MinGW port] Unable to repack on Clearcase dynamic views
To: Johannes Sixt <J.Sixt@eudaptics.com>
On 5/30/07, Johannes Sixt <J.Sixt@eudaptics.com> wrote:
> Nguyen Thai Ngoc Duy wrote:
> > On clearcase dynamic views (kind of virtual drives), "mv -f a b" won't
> > work if "a" is read-only. Because git-repack.sh removes all write
> > permission before moving packs, it fails on clearcase dynamic views.
> >
> > My approach is rather ugly. Does anyone have a better solution?
>
> If you do two 'git repack -a -d' in a row, the second one fails even
> with this patch, right? To fix it, you must 'chmod u+w' in the for-loop
> right above this hunk, too.
Well, I'm not sure I understand it. git-repack with the patch applied
runs fine for me. Can you explain it more detail please?
>
> Since you 'chmod a-w' after the mv, why not just remove the first ones
> before the first mv? Then you can get rid of the second try.
Because I'm not sure what that command is for :) I suspect that packs
(or anything inside .git/objects) are read-only and the author want to
make sure no one can write to the packs as soon as they are created.
The other way to do is to move 'chmod a-w' down several lines -- we
only make those files read-only after moving them to
.git/objects/packs.
>
> -- Hannes
>
> >
> > diff --git a/git-repack.sh b/git-repack.sh
> > index acb78ba..76a9525 100755
> > --- a/git-repack.sh
> > +++ b/git-repack.sh
> > @@ -86,10 +86,22 @@ else
> > mv -f "$PACKTMP-$name.idx" "$PACKDIR/pack-$name.idx" &&
> > test -f "$PACKDIR/pack-$name.pack" &&
> > test -f "$PACKDIR/pack-$name.idx" || {
> > - echo >&2 "Couldn't replace the existing pack with updated one."
> > - echo >&2 "The original set of packs have been saved as"
> > - echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
> > - exit 1
> > + # Clearcase dynamic views do not allow to move file without write permission
> > + # Try the second time with write allowed
> > + chmod u+w "$PACKTMP-$name.pack"
> > + chmod u+w "$PACKTMP-$name.idx"
> > +
> > + mv -f "$PACKTMP-$name.pack" "$PACKDIR/pack-$name.pack" &&
> > + mv -f "$PACKTMP-$name.idx" "$PACKDIR/pack-$name.idx" &&
> > + test -f "$PACKDIR/pack-$name.pack" &&
> > + test -f "$PACKDIR/pack-$name.idx" || {
> > + echo >&2 "Couldn't replace the existing pack with updated one."
> > + echo >&2 "The original set of packs have been saved as"
> > + echo >&2 "old-pack-$name.{pack,idx} in $PACKDIR."
> > + exit 1
> > + }
> > + chmod a-w "$PACKDIR/pack-$name.pack"
> > + chmod a-w "$PACKDIR/pack-$name.idx"
> > }
> > rm -f "$PACKDIR/old-pack-$name.pack" "$PACKDIR/old-pack-$name.idx"
> > fi
> >
> > --
> > Duy
>
>
--
Duy
--
Duy
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-30 15:33 ` Nguyen Thai Ngoc Duy
@ 2007-05-30 16:30 ` Paolo Teti
2007-05-30 18:28 ` Robin Rosenberg
1 sibling, 0 replies; 14+ messages in thread
From: Paolo Teti @ 2007-05-30 16:30 UTC (permalink / raw)
To: Nguyen Thai Ngoc Duy
Cc: Git Mailing List, Matthias Lederhofer, Junio C Hamano
2007/5/30, Nguyen Thai Ngoc Duy <pclouds@gmail.com>:
> On 5/30/07, Paolo Teti <paolo.teti@gmail.com> wrote:
> > to move a file in a Clearcase view you have to use 'cleartool mv ...'
> > (or 'cleartool relocate') and not the UNIX mv command...
>
> 'cleartool mv' is used for clearcase-manages files. My git repository
> are private files.
ok, but also cleartool mv works for private file..
Take a look at:
http://www-1.ibm.com/support/docview.wss?rs=984&context=SSSH27&context=SSCGQ7D&q1=mv+read-only+files&uid=swg1IC46584&loc=en_US&cs=utf-8&lang=en
should be a clearcase bug.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-30 15:33 ` Nguyen Thai Ngoc Duy
2007-05-30 16:30 ` Paolo Teti
@ 2007-05-30 18:28 ` Robin Rosenberg
2007-05-30 18:44 ` Johannes Schindelin
` (3 more replies)
1 sibling, 4 replies; 14+ messages in thread
From: Robin Rosenberg @ 2007-05-30 18:28 UTC (permalink / raw)
To: Nguyen Thai Ngoc Duy
Cc: Paolo Teti, Git Mailing List, Matthias Lederhofer, Junio C Hamano
onsdag 30 maj 2007 skrev Nguyen Thai Ngoc Duy:
> On 5/30/07, Paolo Teti <paolo.teti@gmail.com> wrote:
> > 2007/5/30, Nguyen Thai Ngoc Duy <pclouds@gmail.com>:
> > > Hi,
> > >
> > > On clearcase dynamic views (kind of virtual drives), "mv -f a b" won't
> > > work if "a" is read-only. Because git-repack.sh removes all write
> > > permission before moving packs, it fails on clearcase dynamic views.
> > >
> > > My approach is rather ugly. Does anyone have a better solution?
> >
> > I hate clearcase, but honestly I have used it forced by a customer..
> > The real problem is why you need to do a repack in a CC view, but..
>
> I don't like it either :) But you remind me the Matthias' workdir
> patchset. With that I can move out .git to a real drive/filesystem
> (which should also give better performance).
>
> I think it's a valid use case. Anyone remember why Matthias' patchset
> was dropped?
> It was last mentioned in
> http://article.gmane.org/gmane.comp.version-control.git/43041
>
> Junio, Matthias? May I help?
Wasn't because it's better to make .git a link to a repository somewhere
else? Just a guess.
ln -s /somewhere/repo/.git .git
Works fine for me (yes, in a clearcase dynamic view).
BTW, Does anyone have something like git-cvsexportcommit for clearcase?
-- robin
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-30 18:28 ` Robin Rosenberg
@ 2007-05-30 18:44 ` Johannes Schindelin
2007-05-30 19:08 ` Nguyen Thai Ngoc Duy
` (2 subsequent siblings)
3 siblings, 0 replies; 14+ messages in thread
From: Johannes Schindelin @ 2007-05-30 18:44 UTC (permalink / raw)
To: Robin Rosenberg
Cc: Nguyen Thai Ngoc Duy, Paolo Teti, Git Mailing List,
Matthias Lederhofer, Junio C Hamano
Hi,
On Wed, 30 May 2007, Robin Rosenberg wrote:
> Wasn't because it's better to make .git a link to a repository somewhere
> else? Just a guess.
>
> ln -s /somewhere/repo/.git .git
>
> Works fine for me (yes, in a clearcase dynamic view).
MinGW does not know symbolic links (at least not on the common
filesystems).
Ciao,
Dscho
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-30 18:28 ` Robin Rosenberg
2007-05-30 18:44 ` Johannes Schindelin
@ 2007-05-30 19:08 ` Nguyen Thai Ngoc Duy
2007-05-30 19:28 ` Robin Rosenberg
2007-05-31 9:46 ` Paolo Teti
2007-06-01 18:11 ` Jan Hudec
3 siblings, 1 reply; 14+ messages in thread
From: Nguyen Thai Ngoc Duy @ 2007-05-30 19:08 UTC (permalink / raw)
To: Robin Rosenberg
Cc: Paolo Teti, Git Mailing List, Matthias Lederhofer, Junio C Hamano
On 5/30/07, Robin Rosenberg <robin.rosenberg.lists@dewire.com> wrote:
> onsdag 30 maj 2007 skrev Nguyen Thai Ngoc Duy:
> > On 5/30/07, Paolo Teti <paolo.teti@gmail.com> wrote:
> > > 2007/5/30, Nguyen Thai Ngoc Duy <pclouds@gmail.com>:
> > > > Hi,
> > > >
> > > > On clearcase dynamic views (kind of virtual drives), "mv -f a b" won't
> > > > work if "a" is read-only. Because git-repack.sh removes all write
> > > > permission before moving packs, it fails on clearcase dynamic views.
> > > >
> > > > My approach is rather ugly. Does anyone have a better solution?
> > >
> > > I hate clearcase, but honestly I have used it forced by a customer..
> > > The real problem is why you need to do a repack in a CC view, but..
> >
> > I don't like it either :) But you remind me the Matthias' workdir
> > patchset. With that I can move out .git to a real drive/filesystem
> > (which should also give better performance).
> >
> > I think it's a valid use case. Anyone remember why Matthias' patchset
> > was dropped?
> > It was last mentioned in
> > http://article.gmane.org/gmane.comp.version-control.git/43041
> >
> > Junio, Matthias? May I help?
>
> Wasn't because it's better to make .git a link to a repository somewhere
> else? Just a guess.
>
> ln -s /somewhere/repo/.git .git
>
> Works fine for me (yes, in a clearcase dynamic view).
Clearcase symlinks require checkout/checkin stuffs that I really don't
want to mess up with. Moreover, it seems not work if the link
destination is out of clearcase view (which is what I wanted).
--
Duy
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-30 19:08 ` Nguyen Thai Ngoc Duy
@ 2007-05-30 19:28 ` Robin Rosenberg
2007-05-30 19:48 ` Nguyen Thai Ngoc Duy
0 siblings, 1 reply; 14+ messages in thread
From: Robin Rosenberg @ 2007-05-30 19:28 UTC (permalink / raw)
To: Nguyen Thai Ngoc Duy
Cc: Paolo Teti, Git Mailing List, Matthias Lederhofer, Junio C Hamano
onsdag 30 maj 2007 skrev Nguyen Thai Ngoc Duy:
> Clearcase symlinks require checkout/checkin stuffs that I really don't
> want to mess up with. Moreover, it seems not work if the link
> destination is out of clearcase view (which is what I wanted).
Well obviously.. :/
I guess junction points in dynamic views are out of the question too. Would
setting GIT_DIR be too cumbersome?
-- robin
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-30 19:28 ` Robin Rosenberg
@ 2007-05-30 19:48 ` Nguyen Thai Ngoc Duy
0 siblings, 0 replies; 14+ messages in thread
From: Nguyen Thai Ngoc Duy @ 2007-05-30 19:48 UTC (permalink / raw)
To: Robin Rosenberg
Cc: Paolo Teti, Git Mailing List, Matthias Lederhofer, Junio C Hamano
On 5/30/07, Robin Rosenberg <robin.rosenberg.lists@dewire.com> wrote:
> onsdag 30 maj 2007 skrev Nguyen Thai Ngoc Duy:
> > Clearcase symlinks require checkout/checkin stuffs that I really don't
> > want to mess up with. Moreover, it seems not work if the link
> > destination is out of clearcase view (which is what I wanted).
>
> Well obviously.. :/
>
> I guess junction points in dynamic views are out of the question too. Would
> setting GIT_DIR be too cumbersome?
Well, I've got the same errors as before in this thread :)
http://thread.gmane.org/gmane.comp.version-control.git/41586
--
Duy
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-30 18:28 ` Robin Rosenberg
2007-05-30 18:44 ` Johannes Schindelin
2007-05-30 19:08 ` Nguyen Thai Ngoc Duy
@ 2007-05-31 9:46 ` Paolo Teti
2007-05-31 18:51 ` Robin Rosenberg
2007-06-01 18:11 ` Jan Hudec
3 siblings, 1 reply; 14+ messages in thread
From: Paolo Teti @ 2007-05-31 9:46 UTC (permalink / raw)
To: Robin Rosenberg; +Cc: Nguyen Thai Ngoc Duy, Git Mailing List
2007/5/30, Robin Rosenberg <robin.rosenberg.lists@dewire.com>:
> BTW, Does anyone have something like git-cvsexportcommit for clearcase?
a stupid workaround is git-cvsexportcommit + clearimport /clearexport_cvs.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-31 9:46 ` Paolo Teti
@ 2007-05-31 18:51 ` Robin Rosenberg
0 siblings, 0 replies; 14+ messages in thread
From: Robin Rosenberg @ 2007-05-31 18:51 UTC (permalink / raw)
To: Paolo Teti; +Cc: Nguyen Thai Ngoc Duy, Git Mailing List
torsdag 31 maj 2007 skrev Paolo Teti:
> 2007/5/30, Robin Rosenberg <robin.rosenberg.lists@dewire.com>:
>
> > BTW, Does anyone have something like git-cvsexportcommit for clearcase?
>
> a stupid workaround is git-cvsexportcommit + clearimport /clearexport_cvs.
> -
That would require a clearcase to cvs converter, wouldn't it, so I'd have something to commit to..
Even more stupid than my attempt at a clearcase to git converter.
-- robin
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [MinGW port] Unable to repack on Clearcase dynamic views
2007-05-30 18:28 ` Robin Rosenberg
` (2 preceding siblings ...)
2007-05-31 9:46 ` Paolo Teti
@ 2007-06-01 18:11 ` Jan Hudec
3 siblings, 0 replies; 14+ messages in thread
From: Jan Hudec @ 2007-06-01 18:11 UTC (permalink / raw)
To: Robin Rosenberg
Cc: Nguyen Thai Ngoc Duy, Paolo Teti, Git Mailing List,
Matthias Lederhofer, Junio C Hamano
[-- Attachment #1: Type: text/plain, Size: 904 bytes --]
On Wed, May 30, 2007 at 20:28:15 +0200, Robin Rosenberg wrote:
> Wasn't because it's better to make .git a link to a repository somewhere
> else? Just a guess.
>
> ln -s /somewhere/repo/.git .git
>
> Works fine for me (yes, in a clearcase dynamic view).
It works for me too. It requires cygwin version of git though, since windows
don't have native symlinks.
> BTW, Does anyone have something like git-cvsexportcommit for clearcase?
No, but it should not be too hard to create.
If you want to quickly import something, you can try starting with something
like:
diff clearcase-view git-checkout > p
lsdiff p | xargs -d '\n' cleartool checkout
patch -p $n < p
You'll have to sort out which directories to run which command in and how
many components to strip with -p in the patch. It also does not handle adding
and removing.
--
Jan 'Bulb' Hudec <bulb@ucw.cz>
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2007-06-01 18:11 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-30 14:42 [MinGW port] Unable to repack on Clearcase dynamic views Nguyen Thai Ngoc Duy
2007-05-30 15:11 ` Paolo Teti
2007-05-30 15:33 ` Nguyen Thai Ngoc Duy
2007-05-30 16:30 ` Paolo Teti
2007-05-30 18:28 ` Robin Rosenberg
2007-05-30 18:44 ` Johannes Schindelin
2007-05-30 19:08 ` Nguyen Thai Ngoc Duy
2007-05-30 19:28 ` Robin Rosenberg
2007-05-30 19:48 ` Nguyen Thai Ngoc Duy
2007-05-31 9:46 ` Paolo Teti
2007-05-31 18:51 ` Robin Rosenberg
2007-06-01 18:11 ` Jan Hudec
2007-05-30 15:28 ` Johannes Sixt
[not found] ` <fcaeb9bf0705300840w221c46c1y742388fc9e61c2fa@mail.gmail.com>
2007-05-30 15:43 ` Fwd: " Nguyen Thai Ngoc Duy
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).