From: "Matthew D. Fuller" <fullermd@over-yonder.net>
To: Carl Worth <cworth@cworth.org>
Cc: bazaar-ng@lists.canonical.com, git@vger.kernel.org
Subject: Re: VCS comparison table
Date: Sun, 22 Oct 2006 07:46:35 -0500 [thread overview]
Message-ID: <20061022124635.GR75501@over-yonder.net> (raw)
In-Reply-To: <87ac3p1jn7.wl%cworth@cworth.org>
[ Time to trim up CC's a bit ]
On Sat, Oct 21, 2006 at 01:47:08PM -0700 I heard the voice of
Carl Worth, and lo! it spake thus:
> On Sat, 21 Oct 2006 08:01:11 -0500, "Matthew D. Fuller" wrote:
> > I think we're getting into scratched-record-mode on this.
>
> I apologize if I've come across as beating a dead horse on this.
Oh, I don't mean the whole topic in general. It's just that there are
only so many ways one can say "revnos are only valid in certain
situations", and I really think we must have hit them all by now. We
all agree on that; we just disagree (probably highly based on
differing workflows) on the commonness and extent of those situations.
> > B: Revnos are handier tools for [situation] and [situation] for
> > [reason] and [reason].
>
> I'm missing something:
>
> I still haven't seen strong examples for this last claim. When are
> they handier?
This ties in a bit with what you say below, so I'll address it there.
> There's no doubt that there has been semantic confusion over the
> term branch that has been confounding communication on both sides.
[...]
> Let me know if I botched any of that.
This seems correct; at least, it's correct enough to work from until
we find a detail wrong.
> But dropping a merged branch in bzr means throwing away the ability to
> reference any of its commits by its custom, branch-specific revision
> numbers.
True (though see below).
> And there is no simple way to correlate the numbers between
> branches.
Rather, unless you can one way or another access the branch the number
was for, there's NO way.
> Maybe you can argue that there isn't any centralization bias in bzr.
> But anyone that claims that the revnos. are stable really is talking
> from a standpoint that favors centralization.
I think it's using that 'c' word there that's causing contention here;
we're ascribing different meanings to it.
Revnos only apply to a specific "branch" (in this usage, I'm talking
about branch abstractly and somewhat specifically; more in a moment),
and so except by wild coincidence are only useful in talking about
that branch. One of the two cases (the second discussed later) where
that's useful is when you have long-lived branches. In git,
apparently, you don't have long-lived "branches" in this particular
meaning of the word, but the way people use bzr they do. Perhaps this
is what you mean by 'centralization'.
That long-lived branch doesn't have to be any sort of "trunk", though
it usually is; it could as easily be something totally peripheral.
Now, details of that use of "branch". In mathematical terms, a branch
may be defined purely by its head rev (and the graph built up by
recursing through all the parents), but in [bzr] UI and mental model
terms, a "branch" is that plus its mainline[0]; the left-most or first
line of descent, which colloquially is the difference between 'things
I commit' and 'things I merge'.
Let me try flexing my git-expression muscles here. Given a branch at
a specific point in time, you point at the head rev, and there's a
subset we call 'mainline' of the whole set of parents, which is
expressed by following the 'first' parent pointers back to a single
origin (there can be 50 origins in the whole graph, of course, but
only one of them is on the 'mainline'). At some later time, more
revisions have been added to the graph, and the head rev is now
something "later". If, at that later time, all the nodes which were
previously on that 'mainline' are still on it tracing back from the
new head, then in the sense I'm using "branch", it's still the same
"branch". All the revnos referring to its earlier incarnation are
still valid for this one (though there are new ones tacked onto the
end; that doesn't affect the pre-existing ones).
[I THINK we all understand that, but just making sure]
[0] This probably causes some confusion too, since I know I'm guilty
of using the word 'mainline' both in the sense of a 'trunk'
branch, and this particular path through one branch. _I_ think
it's usually clear from context, but I guess it probably isn't for
those with a different mental modeling of "branch".
> To illustrate, yesterday I gave an example where performing a bzr
> branch from a dotted-decimal revision would rewrite the numbers from
> the originating branch (1.2.2, 1.2.1, and 1) to unrelated numbers in
> the new branch (3, 2, 1).
One thing to note here is that that 1.2.1 and 1.2.2 came into your
first branch here by merging from another branch (call that branch
'b'). When you created your new branch here that now has (3,2,1),
those numbers are the same as the numbers that existed locally in 'b'
at the time 1.2.2 was its 'head'. In a sense, then, you've just
recreated [a copy of] "branch" 'b' at that time. So, in a way, by
taking a copy of the current bzr.dev branch, you can recreate the
entire state of any branches that were merged into it as of the time
they were merged (excluding cases of cherrypicking, or when merging
prior to the head of those branches of course).
> But then I realized why bzr is doing this. It's because, bzr users
> don't just use the revision numbers for external communication, but
> they also use them for lots of direct interaction with the tool. The
> rewriting makes it easy to write something like "bzr diff -r1..3".
This is an instance of the second case (first above) where the revnos,
applying just to one branch, become useful. And, it's probably the
case I'm most attached to.
The great majority (I'd say easily 80%) of my references to revisions
are transient. Most of 'em have probably exhausted their usefulness
in an hour; many of them (as in interaction with the tool you
mentioned) in just a couple seconds. Virtually all my branches live
longer than that, so the limited lifespan of the numbers in the grand
scheme doesn't matter a whit.
So, from above, some of the places they're handier:
- Typing. I know, copy and paste copies and pastes one string just as
well as another, and long strings just as well as short. But I
don't want to copy&paste; I want to ^Z out of log and run a quick
diff, between two revisions only one of which is on my screen at the
time. I can just remember the offscreen revno I'm comparing
against, and it's very easy to quickly type the numbers,
particularly since 95% of the time I'm comparing mainline revs so I
don't even have to think about dotted forms.
- Some forms of communicating. I can yell numbers across the room
without concern about whether they'll be interpreted right. Even 6
digits of an SHA-1 hash are a lot harder to do that with. I can
hold revnos in my head while I walk down the hall to talk to
somebody about them, or pick up a phone, or go to a meeting. I can
scrawl them on notepads or whiteboards. In all these cases, the
only reason for which I'm communicating that revno will be exhausted
very shortly, so it's completely irrelevant whether it's meaningful
in 5 years, or next week.
- Visual comparing (this is one that's useful on the long-lived
branches, as well as transient stuff) and information gathering. I
can hold in my head "Yeah, I looked at 1350 of Joe's branch", and if
I see an email from him "Oh, I fixed a bug in 1358" or "in 1293", I
can know just from that whether I saw the fix or not.
If somebody says "I introduced a bug in revision 3841, and fixed it
in 3843", I know the window where that bug is in play is probably
pretty small, whereas "introduced in 3841, fixed in 5337" tells me
it was alive a looong time.
bzr.dev is currently on revno 2091. I didn't know that, I had to
look it up. But I knew it was a little past 2000, just from loosely
watching it. If somebody talks about something that happened in
revno 1800, I know automatically "That was fairly recent", compared
to talking about revno 75, where I know "Wow, that was a long time
ago".
This property is true of bzr revids as well. If I see talk about
revision "mbp@sourcefrog.net-20050520021228-bc46a17f07eff7f9", I
know right away Martin committed it, and it was a year and a half
ago. If I see talk about an oops in revision "af38cc3", that just
tells me that somebody screwed up, and it gets mentally filed away
or goes in one eye and out the other. But if I see talk about an
oops in revision "fullermd@over-yonder.net-[...]", that rings bright
blue bells that tell me that *I* screwed up and I need to jump on
that right now. In a sufficiently small projects with sufficiently
discrete task division, I may even be able to guess offhand based on
the person and date what bit of functionality the commit references,
though that's a much lower probability.
It can also be useful in looking at cases where you don't
necessarily have the tool. Compare putting CVS's rcsid tags in
strings in the source. static const char *rcsid = "$Id"; and the
like. Then you can use 'ident' on the compiled binaries to see the
revs of files in them. If somebody says "foo.c has a bug in 1.34,
fixed in 1.37", I can without any VCS interaction just look at the
compiled binary and tell whether I'm prior to the bug, have the bug,
or after the fix. If the binary is known to be compiled from a
particular branch, a tree-wide revno tells me that too. A revid
(even one containing a date) won't tell me that; I'll have to find
the tool and a copy of the tree and find out if my rev contains that
other rev.
Now, on any given revision reference, I probably don't care about
most of those bits of info. I may not care about any of them, but I
often care about at least one or two. And we all probably have
wildly varying appraisals of the commonness of various of the
situations described. And yes, a lot of them are just mental
heuristics. Sure, with a completely opaque id, I could pull up the
tool to look up any of those (and a lot more information besides),
the gain is I don't HAVE to. Just knowing some bit of that info can
often tell me if I don't care to investigate whatever the revision
is being referenced for at all, or that I need to put doing so at
the top of my priority list.
> And it turns out that git also allows branch specific naming for the
> exact same reason. In place of 3, 2, 1 in the same situation git
> would allow the names HEAD, HEAD~1, and HEAD~2 to refer to the same
> three revisions. So the easy diff command would be "git diff HEAD~2
> HEAD".
In bzr, that would be "bzr diff -r-2..-1" (or just "-r-2.." since
open-ended revspecs pretty much work like you'd expect them to). IME,
that only works well maybe 4 or 5 revs back; past that, you spend too
much time counting, and it's easier to just whack in the number from
log.
bzr _doesn't_, OTOH, have anything like HEAD^2, for selecting
alternate parent paths. That's probably use-pattern bias; we hardly
ever do something like that, so it's never occurred to us to add the
ability to.
> Maybe some of the people that dislike git's "ugly" names so much is
> that they imagine that to compare two revisions a user of git must
> inspect the logs, fish out the sha1sum for each, and then
> cut-and-paste to create the command needed.
I do imagine that. And I think I'd hit it, since I often look around
revs that aren't right near the tip; trying to figure out
"HEAD~293..HEAD~38" is even worse than excavating the sha1sum's.
--
Matthew Fuller (MF4839) | fullermd@over-yonder.net
Systems/Network Administrator | http://www.over-yonder.net/~fullermd/
On the Internet, nobody can hear you scream.
next prev parent reply other threads:[~2006-10-22 12:46 UTC|newest]
Thread overview: 807+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-10-14 15:07 VCS comparison table Jon Smirl
2006-10-14 16:40 ` Jakub Narebski
2006-10-14 17:18 ` Jon Smirl
2006-10-14 17:42 ` Jakub Narebski
2006-10-16 3:53 ` Martin Pool
2006-10-22 15:50 ` Jakub Narebski
2006-10-16 22:26 ` Aaron Bentley
2006-10-16 22:35 ` Andy Whitcroft
2006-10-16 22:53 ` Jakub Narebski
2006-10-16 23:19 ` Jakub Narebski
2006-10-16 23:39 ` Nguyen Thai Ngoc Duy
2006-10-17 4:56 ` Aaron Bentley
2006-10-17 5:20 ` Shawn Pearce
2006-10-17 8:21 ` Martin Pool
2006-10-17 8:15 ` Jakub Narebski
2006-10-17 8:16 ` Andreas Ericsson
2006-10-17 20:01 ` Aaron Bentley
2006-10-17 21:01 ` Jakub Narebski
2006-10-17 21:27 ` Aaron Bentley
2006-10-17 21:51 ` Jakub Narebski
2006-10-17 22:28 ` Aaron Bentley
2006-10-17 22:57 ` Jakub Narebski
2006-10-17 22:59 ` Jakub Narebski
2006-10-17 23:16 ` Linus Torvalds
2006-10-18 5:36 ` Jeff King
2006-10-18 5:57 ` Junio C Hamano
2006-10-18 14:52 ` Linus Torvalds
2006-10-18 18:52 ` [ANNOUNCE] Example Cogito Addon - cogito-bundle Petr Baudis
2006-10-18 18:59 ` Petr Baudis
2006-10-18 19:04 ` Junio C Hamano
2006-10-18 19:13 ` Nicolas Pitre
2006-10-18 19:18 ` Shawn Pearce
2006-10-18 19:33 ` Nicolas Pitre
2006-10-18 20:46 ` Shawn Pearce
2006-10-18 21:17 ` Linus Torvalds
2006-10-18 21:32 ` Shawn Pearce
2006-10-18 21:42 ` Junio C Hamano
2006-10-18 21:52 ` Shawn Pearce
2006-10-18 22:02 ` Junio C Hamano
2006-10-18 21:55 ` Linus Torvalds
2006-10-18 22:05 ` Shawn Pearce
2006-10-18 22:07 ` Junio C Hamano
2006-10-18 21:41 ` Nicolas Pitre
2006-10-18 21:41 ` Shawn Pearce
2006-10-18 22:00 ` Linus Torvalds
2006-10-18 22:11 ` Shawn Pearce
2006-10-18 22:13 ` Junio C Hamano
2006-10-18 22:42 ` Linus Torvalds
2006-10-18 22:48 ` Junio C Hamano
2006-10-18 23:22 ` Shawn Pearce
2006-10-18 23:18 ` Nicolas Pitre
2006-10-18 23:50 ` Johannes Schindelin
2006-10-19 0:07 ` Linus Torvalds
2006-10-19 0:15 ` Linus Torvalds
2006-10-19 0:31 ` Johannes Schindelin
2006-10-19 0:46 ` Linus Torvalds
2006-10-19 3:01 ` Nicolas Pitre
2006-10-19 3:46 ` Junio C Hamano
2006-10-19 14:27 ` Nicolas Pitre
2006-10-19 14:55 ` Linus Torvalds
2006-10-19 16:07 ` Jan Harkes
2006-10-19 16:48 ` Linus Torvalds
2006-10-20 0:20 ` Jan Harkes
2006-10-20 14:41 ` Jeff King
2006-10-20 0:20 ` [PATCH 1/2] Pass through unresolved deltas when writing a pack Jan Harkes
2006-10-20 0:20 ` [PATCH 2/2] Remove unused index tracking code Jan Harkes
2006-10-20 1:11 ` Nicolas Pitre
2006-10-20 1:35 ` Junio C Hamano
2006-10-20 2:27 ` Jan Harkes
2006-10-20 2:30 ` Junio C Hamano
2006-10-20 2:46 ` Jan Harkes
2006-10-20 3:36 ` Nicolas Pitre
2006-10-18 21:56 ` [ANNOUNCE] Example Cogito Addon - cogito-bundle Junio C Hamano
2006-10-18 19:33 ` Junio C Hamano
2006-10-18 20:47 ` Shawn Pearce
2006-10-18 19:09 ` Nicolas Pitre
2006-10-18 20:08 ` Linus Torvalds
[not found] ` <20061018155704.b94b441d.seanlkml@sympatico.ca>
2006-10-18 19:57 ` Sean
2006-10-18 20:46 ` Petr Baudis
[not found] ` <20061018165341.bcece11f.seanlkml@sympatico.ca>
2006-10-18 20:53 ` Sean
2006-10-18 21:39 ` Petr Baudis
[not found] ` <20061018175443.50b728f6.seanlkml@sympatico.ca>
2006-10-18 21:54 ` Sean
2006-10-19 6:46 ` Alexander Belchenko
[not found] ` <20061019064049.bec89582.seanlkml@sympatico.ca>
2006-10-19 10:40 ` Sean
2006-10-19 10:40 ` Sean
2006-10-20 14:03 ` Aaron Bentley
2006-10-20 14:56 ` Jakub Narebski
2006-10-20 15:34 ` Aaron Bentley
2006-10-20 16:21 ` Jakub Narebski
2006-10-20 17:03 ` Aaron Bentley
2006-10-20 17:18 ` Linus Torvalds
2006-10-20 17:45 ` Jakub Narebski
2006-10-20 17:59 ` Linus Torvalds
2006-10-20 20:17 ` Junio C Hamano
2006-10-20 20:40 ` Jakub Narebski
2006-10-20 22:41 ` [PATCH 1/2] git-pickaxe: introduce heuristics to "best match" scoring Junio C Hamano
2006-10-20 22:41 ` [PATCH 2/2] git-pickaxe: introduce heuristics to avoid "trivial" chunks Junio C Hamano
2006-10-20 17:47 ` [ANNOUNCE] Example Cogito Addon - cogito-bundle Aaron Bentley
2006-10-20 18:06 ` Linus Torvalds
2006-10-20 18:30 ` Linus Torvalds
2006-10-20 19:04 ` Aaron Bentley
2006-10-20 19:31 ` Linus Torvalds
2006-10-20 20:12 ` Aaron Bentley
2006-10-20 17:21 ` Shawn Pearce
2006-10-20 17:48 ` Linus Torvalds
2006-10-20 17:58 ` David Lang
2006-10-20 18:15 ` Jon Smirl
2006-11-03 3:43 ` Matthew Hannigan
2006-10-20 20:23 ` Petr Baudis
2006-10-20 20:49 ` David Lang
2006-10-20 20:53 ` Petr Baudis
2006-10-20 20:55 ` David Lang
2006-10-20 20:53 ` Shawn Pearce
2006-10-20 18:12 ` Jan Hudec
2006-10-20 18:35 ` Jakub Narebski
2006-10-20 18:46 ` Jakub Narebski
2006-10-20 18:47 ` Jakub Narebski
2006-10-20 19:00 ` Linus Torvalds
2006-10-20 19:10 ` Aaron Bentley
2006-10-20 19:46 ` Linus Torvalds
2006-10-20 20:29 ` Aaron Bentley
2006-10-20 20:57 ` Linus Torvalds
2006-10-21 2:03 ` git-merge-recursive, was " Johannes Schindelin
2006-10-21 2:17 ` Junio C Hamano
2006-10-22 21:04 ` [PATCH] threeway_merge: if file will not be touched, leave it alone Johannes Schindelin
2006-10-22 23:11 ` Junio C Hamano
2006-10-23 0:48 ` Johannes Schindelin
2006-10-23 4:17 ` Junio C Hamano
2006-10-20 18:48 ` [ANNOUNCE] Example Cogito Addon - cogito-bundle Linus Torvalds
2006-10-20 22:13 ` Jeff Licquia
2006-10-20 23:05 ` Robert Collins
2006-10-20 23:15 ` Robert Collins
2006-10-20 23:39 ` Jeff Licquia
2006-10-20 23:24 ` Jakub Narebski
2006-10-20 23:28 ` Petr Baudis
2006-10-20 23:59 ` Linus Torvalds
2006-10-21 1:26 ` Junio C Hamano
2006-10-21 8:40 ` Jakub Narebski
2006-10-20 19:14 ` Jakub Narebski
2006-10-20 22:59 ` Jeff King
2006-10-21 17:40 ` Jan Hudec
2006-10-21 17:51 ` Jakub Narebski
2006-10-21 19:20 ` Jan Hudec
2006-10-21 18:42 ` Linus Torvalds
2006-10-21 19:21 ` Jakub Narebski
2006-11-03 6:36 ` Martin Langhoff
2006-10-20 22:40 ` Petr Baudis
2006-10-20 23:33 ` Aaron Bentley
2006-10-21 7:56 ` Matthieu Moy
2006-10-21 8:36 ` Jakub Narebski
2006-10-21 10:09 ` Matthieu Moy
2006-10-21 10:34 ` Jakub Narebski
[not found] ` <20061020113712.d192580a.seanlkml@sympatico.ca>
2006-10-20 15:37 ` Sean
2006-10-20 15:37 ` Sean
2006-10-18 21:20 ` VCS comparison table Jeff King
2006-10-17 23:33 ` Aaron Bentley
2006-10-18 8:13 ` Andreas Ericsson
2006-10-18 6:22 ` Matthieu Moy
[not found] ` <20061017180051.5453ba90.seanlkml@sympatico.ca>
2006-10-17 22:00 ` Sean
2006-10-17 22:00 ` Sean
2006-10-17 22:44 ` Aaron Bentley
[not found] ` <20061017185622.30fbc6c0.seanlkml@sympatico.ca>
2006-10-17 22:56 ` Sean
2006-10-17 22:56 ` Sean
2006-10-17 23:11 ` Jakub Narebski
2006-10-18 21:04 ` Charles Duffy
[not found] ` <20061018172945.c0c58c38.seanlkml@sympatico.ca>
2006-10-18 21:29 ` Sean
2006-10-18 23:31 ` Charles Duffy
2006-10-18 23:48 ` Johannes Schindelin
2006-10-19 1:58 ` Charles Duffy
2006-10-19 11:01 ` Johannes Schindelin
2006-10-19 11:10 ` Charles Duffy
2006-10-19 11:24 ` Johannes Schindelin
2006-10-19 11:30 ` Charles Duffy
2006-10-20 11:38 ` Jakub Narebski
2006-10-18 23:48 ` Jakub Narebski
[not found] ` <20061018194945.3e5105e7.seanlkml@sympatico.ca>
2006-10-18 23:49 ` Sean
2006-10-18 23:49 ` Sean
2006-10-18 21:29 ` Sean
2006-10-18 21:37 ` Shawn Pearce
[not found] ` <20061018174450.f2108a21.seanlkml@sympatico.ca>
2006-10-18 21:44 ` Sean
2006-10-18 21:52 ` Petr Baudis
2006-10-18 23:38 ` Johannes Schindelin
2006-10-18 23:54 ` Petr Baudis
2006-10-19 0:33 ` Johannes Schindelin
2006-10-18 21:51 ` Petr Baudis
2006-10-20 9:43 ` Matthieu Moy
2006-10-24 6:02 ` Lachlan Patrick
2006-10-24 6:23 ` Shawn Pearce
2006-10-24 6:31 ` Linus Torvalds
2006-10-24 6:45 ` David Rientjes
[not found] ` <"Pin e.LNX.4.64.0610240812410.3962"@g5.osdl.org>
[not found] ` <Pin e.LNX.4.64.0610240812410.3962@g5.osdl.org>
2006-10-24 15:15 ` Linus Torvalds
2006-10-24 20:12 ` David Rientjes
2006-10-24 20:28 ` Jakub Narebski
2006-10-25 8:48 ` Jeff King
[not found] ` < Pine.LNX.4.64N.0610250157470.3467@attu1.cs.washington.edu>
[not found] ` <20061025094900.G A26989@coredump.intra.peff.net>
2006-10-25 9:19 ` David Rientjes
2006-10-25 9:32 ` Jakub Narebski
2006-10-25 9:49 ` Jeff King
2006-10-25 13:49 ` Andreas Ericsson
2006-10-25 21:51 ` David Lang
2006-10-25 22:15 ` Shawn Pearce
2006-10-25 22:29 ` Jakub Narebski
2006-10-25 22:44 ` Petr Baudis
2006-10-25 23:15 ` Jakub Narebski
2006-10-26 1:06 ` Horst H. von Brand
2006-10-25 22:41 ` David Lang
2006-10-25 17:21 ` David Rientjes
2006-10-25 21:03 ` Jeff King
2006-10-26 11:15 ` Andreas Ericsson
2006-10-26 16:30 ` David Lang
2006-10-26 17:03 ` Nicolas Pitre
2006-10-26 17:04 ` David Lang
2006-10-26 17:16 ` Linus Torvalds
2006-10-26 17:24 ` Nicolas Pitre
2006-10-26 17:45 ` Jakub Narebski
2006-10-25 21:08 ` Junio C Hamano
2006-10-25 21:16 ` Jeff King
2006-10-25 21:32 ` Junio C Hamano
2006-10-25 21:50 ` Junio C Hamano
2006-10-26 11:25 ` Andreas Ericsson
2006-10-26 2:29 ` Linus Torvalds
2006-10-17 22:03 ` Linus Torvalds
2006-10-17 22:53 ` Aaron Bentley
2006-10-17 23:09 ` Linus Torvalds
2006-10-18 0:23 ` Aaron Bentley
2006-10-18 0:46 ` Jakub Narebski
[not found] ` <200610180246.18758.jnareb@gmail.com>
2006-10-18 1:00 ` Aaron Bentley
2006-10-18 1:25 ` Carl Worth
2006-10-18 3:10 ` Aaron Bentley
2006-10-18 8:39 ` Andreas Ericsson
2006-10-18 9:04 ` Peter Baumann
2006-10-18 9:07 ` Jakub Narebski
2006-10-18 10:32 ` Matthew D. Fuller
2006-10-18 11:19 ` Andreas Ericsson
2006-10-18 12:43 ` Matthew D. Fuller
[not found] ` <20061018090218.35f0326b.seanlkml@sympatico.ca>
2006-10-18 13:02 ` Sean
2006-10-18 13:02 ` Sean
2006-10-18 13:10 ` Jakub Narebski
2006-10-18 16:07 ` Linus Torvalds
2006-10-18 15:38 ` Carl Worth
2006-10-19 9:10 ` Matthew D. Fuller
2006-10-19 11:15 ` Andreas Ericsson
2006-10-19 12:04 ` Matthieu Moy
2006-10-19 12:33 ` Petr Baudis
2006-10-19 13:44 ` Matthieu Moy
2006-10-19 16:03 ` Carl Worth
2006-10-19 16:38 ` Matthieu Moy
2006-10-20 11:24 ` Jakub Narebski
2006-10-20 11:50 ` Jakub Narebski
2006-10-20 13:26 ` Jakub Narebski
2006-10-20 23:19 ` Junio C Hamano
2006-10-21 0:07 ` Linus Torvalds
2006-10-21 1:09 ` Junio C Hamano
2006-10-21 1:19 ` Linus Torvalds
2006-10-21 1:27 ` Junio C Hamano
2006-10-21 1:55 ` Linus Torvalds
2006-10-21 8:32 ` Jakub Narebski
2006-10-19 11:27 ` Karl Hasselström
2006-10-19 11:46 ` Petr Baudis
2006-10-19 16:01 ` Matthew D. Fuller
2006-10-19 17:06 ` Matthew D. Fuller
2006-10-18 3:35 ` Linus Torvalds
2006-10-19 3:10 ` Aaron Bentley
2006-10-19 5:21 ` Carl Worth
2006-10-19 5:56 ` Martin Pool
2006-10-19 14:58 ` Aaron Bentley
2006-10-19 16:59 ` Carl Worth
2006-10-19 23:01 ` Aaron Bentley
2006-10-19 23:42 ` Carl Worth
2006-10-20 1:06 ` Aaron Bentley
2006-10-20 5:05 ` Linus Torvalds
2006-10-20 7:47 ` Lachlan Patrick
2006-10-20 8:38 ` Johannes Schindelin
2006-10-20 10:13 ` Petr Baudis
2006-10-20 11:09 ` Jakub Narebski
2006-10-20 11:37 ` Johannes Schindelin
2006-10-20 12:03 ` Jakub Narebski
2006-10-20 12:48 ` Johannes Schindelin
2006-10-20 17:23 ` David Lang
2006-10-20 10:16 ` Petr Baudis
2006-10-20 9:57 ` Jakub Narebski
2006-10-20 10:02 ` Matthieu Moy
2006-10-20 10:45 ` Andy Whitcroft
2006-10-20 10:45 ` James Henstridge
2006-10-20 12:01 ` Jakub Narebski
2006-10-20 11:00 ` Jakub Narebski
2006-10-20 14:12 ` Jeff King
2006-10-20 14:40 ` Jakub Narebski
2006-10-20 14:52 ` Johannes Schindelin
2006-10-20 15:34 ` Jakub Narebski
2006-10-21 17:57 ` Aaron Bentley
2006-10-21 18:20 ` Jakub Narebski
2006-10-22 14:27 ` Matthieu Moy
2006-10-20 21:48 ` Carl Worth
2006-10-21 13:01 ` Matthew D. Fuller
2006-10-21 14:08 ` Jakub Narebski
2006-10-21 16:31 ` Erik Bågfors
2006-10-21 16:59 ` Jakub Narebski
2006-10-21 17:41 ` Jakub Narebski
2006-10-21 18:11 ` Matthew D. Fuller
2006-10-21 19:19 ` Jeff King
2006-10-21 19:30 ` Jakub Narebski
2006-10-21 19:47 ` Jan Hudec
2006-10-21 19:55 ` Linus Torvalds
2006-10-21 20:19 ` Jakub Narebski
2006-10-21 21:46 ` Matthew D. Fuller
[not found] ` <20061021180653.d3152616.seanlkml@sympatico.ca>
2006-10-21 22:06 ` Sean
2006-10-21 22:25 ` Jakub Narebski
2006-10-21 23:42 ` Jeff Licquia
2006-10-21 23:49 ` Carl Worth
2006-10-22 0:07 ` Jeff Licquia
2006-10-22 0:47 ` Linus Torvalds
2006-10-22 16:02 ` Petr Baudis
2006-10-25 9:52 ` Andreas Ericsson
2006-10-21 19:41 ` Jakub Narebski
2006-10-22 19:18 ` David Clymer
2006-10-22 19:57 ` Jakub Narebski
2006-10-22 20:06 ` Jakub Narebski
2006-10-23 11:56 ` David Clymer
2006-10-23 12:54 ` Jakub Narebski
2006-10-23 15:01 ` James Henstridge
2006-10-23 17:18 ` Aaron Bentley
2006-10-23 17:53 ` Jakub Narebski
2006-10-23 18:04 ` Linus Torvalds
2006-10-23 18:21 ` Jakub Narebski
2006-10-23 18:26 ` Jelmer Vernooij
2006-10-23 18:31 ` Jakub Narebski
2006-10-23 18:44 ` Jelmer Vernooij
2006-10-23 18:45 ` Linus Torvalds
2006-10-23 18:56 ` Jelmer Vernooij
2006-10-23 19:02 ` Shawn Pearce
2006-10-23 19:12 ` Jakub Narebski
2006-10-23 19:18 ` Linus Torvalds
2006-10-23 18:34 ` Linus Torvalds
2006-10-23 20:06 ` Jeff King
2006-10-23 20:29 ` Jakub Narebski
2006-10-24 3:24 ` David Clymer
2006-10-21 20:47 ` Carl Worth
2006-10-21 20:55 ` Jakub Narebski
2006-10-21 23:07 ` Jeff Licquia
[not found] ` <20061021192539.4a00cc3e.seanlkml@sympatico.ca>
2006-10-21 23:25 ` Sean
2006-10-21 23:25 ` Sean
2006-10-22 0:46 ` Jeff Licquia
[not found] ` <20061021212645.2f9ba751.seanlkml@sympatico.ca>
2006-10-22 1:26 ` Sean
2006-10-22 1:26 ` Sean
2006-10-22 3:23 ` Jeff Licquia
[not found] ` <20061021233014.d4525a1d.seanlkml@sympatico.ca>
2006-10-22 3:30 ` Sean
2006-10-22 3:30 ` Sean
2006-10-22 10:00 ` Matthew D. Fuller
[not found] ` <20061022074422.50dcbee6.seanlkml@sympatico.ca>
2006-10-22 11:44 ` Sean
2006-10-22 11:44 ` Sean
2006-10-22 13:03 ` Matthew D. Fuller
[not found] ` <20061022092845.233deb43.seanlkml@sympatico.ca>
2006-10-22 13:28 ` Sean
2006-10-22 13:28 ` Sean
2006-10-22 13:33 ` Matthew D. Fuller
[not found] ` <20061022094041.77c06cc7.seanlkml@sympatico.ca>
2006-10-22 13:40 ` Sean
2006-10-22 13:40 ` Sean
2006-10-22 13:57 ` Matthew D. Fuller
[not found] ` <20061022102454.b9dea693.seanlkml@sympatico.ca>
2006-10-22 14:24 ` Sean
2006-10-22 14:24 ` Sean
2006-10-22 14:56 ` Matthew D. Fuller
2006-10-22 15:05 ` Matthieu Moy
2006-10-22 12:46 ` Matthew D. Fuller [this message]
2006-10-22 13:51 ` Jakub Narebski
2006-10-22 19:36 ` David Clymer
2006-10-25 9:35 ` Andreas Ericsson
2006-10-25 9:46 ` Jakub Narebski
2006-10-25 10:08 ` James Henstridge
2006-10-25 15:54 ` Carl Worth
2006-10-26 8:52 ` James Henstridge
2006-10-26 9:33 ` Junio C Hamano
2006-10-26 9:57 ` James Henstridge
2006-10-26 10:10 ` Jeff King
2006-10-26 10:52 ` Vincent Ladeuil
2006-10-26 11:13 ` Jeff King
2006-10-26 11:15 ` Jeff King
2006-10-26 12:33 ` Vincent Ladeuil
2006-10-26 13:14 ` Rogan Dawes
2006-10-26 11:18 ` Jakub Narebski
2006-10-26 15:05 ` Linus Torvalds
2006-10-26 16:04 ` Vincent Ladeuil
2006-10-26 16:21 ` Linus Torvalds
2006-11-28 0:01 ` git and bzr Joseph Wakeling
2006-11-28 0:39 ` Jakub Narebski
2006-11-28 0:40 ` Sean
2006-11-28 0:40 ` Sean
2006-11-28 2:57 ` Linus Torvalds
2006-11-29 2:23 ` Joseph Wakeling
2006-11-29 3:51 ` Linus Torvalds
2006-11-29 8:07 ` Junio C Hamano
2006-11-29 12:17 ` git blame [was: git and bzr] Joseph Wakeling
2006-11-29 16:39 ` Linus Torvalds
2006-11-30 18:24 ` Joseph Wakeling
2006-11-30 18:44 ` Linus Torvalds
2006-11-30 19:55 ` Carl Worth
2006-11-30 22:17 ` Johannes Schindelin
2006-11-30 22:24 ` J. Bruce Fields
2006-11-30 22:38 ` git blame Junio C Hamano
2006-11-30 22:53 ` Johannes Schindelin
2006-11-30 23:08 ` Jakub Narebski
2006-11-28 12:10 ` git and bzr Erik Bågfors
2006-11-28 12:37 ` Jakub Narebski
2006-11-28 13:35 ` Johannes Schindelin
2006-11-28 16:08 ` Linus Torvalds
2006-11-28 17:07 ` Aaron Bentley
2006-11-28 17:29 ` Jakub Narebski
2006-11-28 18:31 ` Aaron Bentley
2006-11-28 18:43 ` Jakub Narebski
2006-11-28 21:59 ` Aaron Bentley
2006-11-28 22:16 ` Jakub Narebski
2006-11-28 18:00 ` Linus Torvalds
2006-11-28 17:44 ` Nicholas Allen
2006-11-28 18:06 ` Jakub Narebski
2006-11-28 18:58 ` Nicholas Allen
2006-11-28 19:11 ` Nicholas Allen
2006-11-28 19:40 ` Andy Parkins
2006-11-28 19:59 ` Jakub Narebski
2006-11-28 20:37 ` Nicholas Allen
2006-11-28 21:26 ` Nicholas Allen
2006-11-28 21:43 ` Jakub Narebski
2006-11-28 21:49 ` Linus Torvalds
2006-11-28 21:53 ` Shawn Pearce
2006-11-28 22:13 ` Linus Torvalds
2006-11-28 22:22 ` Jakub Narebski
2006-11-28 22:00 ` Nicholas Allen
2006-11-28 22:25 ` Linus Torvalds
2006-11-28 22:41 ` Linus Torvalds
2006-11-28 22:48 ` Nicholas Allen
2006-11-29 10:49 ` Johannes Schindelin
2006-11-29 11:01 ` Jakub Narebski
2006-11-29 20:37 ` Jon Loeliger
2006-11-28 22:46 ` Nicholas Allen
2006-11-29 10:52 ` Johannes Schindelin
2006-11-29 17:29 ` Linus Torvalds
2006-11-29 18:54 ` Marko Macek
2006-11-29 20:07 ` Johannes Schindelin
2006-11-29 20:49 ` Jakub Narebski
2006-11-29 20:45 ` Linus Torvalds
2006-11-30 0:05 ` Carl Worth
2006-11-30 0:08 ` Carl Worth
2006-11-30 0:30 ` Jakub Narebski
2006-11-30 6:59 ` Raimund Bauer
2006-11-30 7:17 ` Carl Worth
2006-11-30 8:31 ` Alan Chandler
2006-11-30 9:01 ` Nguyen Thai Ngoc Duy
2006-11-30 9:30 ` Alan Chandler
2006-11-30 9:35 ` Jakub Narebski
2006-11-30 10:01 ` Junio C Hamano
2006-11-30 22:45 ` Johannes Schindelin
2006-11-30 23:36 ` Junio C Hamano
2006-11-30 9:39 ` Steven Grimm
2006-11-30 10:19 ` Johannes Schindelin
2006-11-30 11:25 ` Nguyen Thai Ngoc Duy
2006-11-30 11:58 ` Jakub Narebski
2006-11-30 12:14 ` Nguyen Thai Ngoc Duy
2006-11-30 12:23 ` Johannes Schindelin
2006-11-30 12:45 ` Andreas Ericsson
2006-11-30 12:25 ` Andreas Ericsson
2006-11-30 20:01 ` Theodore Tso
2006-11-30 20:09 ` Jakub Narebski
2006-12-01 9:55 ` Andreas Ericsson
2006-12-02 8:57 ` Jakub Narebski
[not found] ` <20061128214531.GA24299@jameswestby.net>
2006-11-28 22:34 ` Nicholas Allen
2006-11-28 21:40 ` Martin Langhoff
[not found] ` <456CADE9.7060503@onlinehome.de>
2006-11-28 22:14 ` Martin Langhoff
2006-11-28 22:19 ` Martin Langhoff
2006-11-28 22:36 ` Nicholas Allen
2006-11-28 22:47 ` Martin Langhoff
2006-11-30 12:36 ` Nicholas Allen
2006-11-30 12:47 ` Johannes Schindelin
2006-11-30 16:45 ` Linus Torvalds
2006-10-26 9:50 ` VCS comparison table Andreas Ericsson
2006-10-25 9:57 ` Matthieu Moy
2006-10-21 20:05 ` Aaron Bentley
2006-10-21 20:48 ` Jakub Narebski
2006-10-21 22:52 ` Edgar Toernig
2006-10-21 23:39 ` Aaron Bentley
2006-10-22 0:04 ` Carl Worth
2006-10-22 0:14 ` Jakub Narebski
[not found] ` <20061021165313.dba67497.seanlkml@sympatico.ca>
2006-10-21 20:53 ` Sean
2006-10-21 21:10 ` Linus Torvalds
2006-10-21 20:53 ` Sean
2006-10-22 7:45 ` Jan Hudec
2006-10-22 9:05 ` Jakub Narebski
2006-10-22 9:56 ` Erik Bågfors
2006-10-22 13:23 ` Jakub Narebski
2006-10-22 14:11 ` Erik Bågfors
2006-10-22 14:39 ` Jakub Narebski
2006-10-22 14:25 ` Carl Worth
2006-10-22 14:48 ` Erik Bågfors
2006-10-22 15:04 ` Jakub Narebski
2006-10-22 14:55 ` Jakub Narebski
2006-10-22 18:53 ` Matthew D. Fuller
2006-10-22 19:27 ` Jakub Narebski
2006-10-23 16:57 ` David Lang
2006-10-23 17:29 ` Linus Torvalds
2006-10-23 22:21 ` Matthew D. Fuller
2006-10-23 22:28 ` David Lang
2006-10-23 22:44 ` Linus Torvalds
2006-10-24 0:26 ` Matthew D. Fuller
2006-10-24 15:58 ` David Lang
2006-10-24 16:34 ` Matthew D. Fuller
2006-10-24 18:03 ` David Lang
2006-10-24 18:25 ` Jakub Narebski
2006-10-24 19:27 ` Petr Baudis
2006-10-25 0:27 ` Matthew D. Fuller
2006-10-25 22:40 ` David Lang
2006-10-25 23:53 ` Matthew D. Fuller
2006-10-26 10:13 ` Andreas Ericsson
2006-10-26 10:45 ` Erik Bågfors
2006-10-26 11:48 ` Jakub Narebski
2006-10-26 11:54 ` Nicholas Allen
2006-10-26 12:13 ` Jakub Narebski
2006-10-26 21:25 ` Jeff King
2006-10-27 2:02 ` Horst H. von Brand
2006-10-27 2:08 ` Petr Baudis
2006-10-27 9:34 ` Andreas Ericsson
2006-10-27 10:49 ` Jakub Narebski
2006-10-27 11:41 ` Andreas Ericsson
2006-10-27 14:46 ` J. Bruce Fields
2006-10-28 11:18 ` Ilpo Nyyssönen
2006-10-28 13:53 ` Jakub Narebski
2006-10-28 14:58 ` Jakub Narebski
2006-10-28 22:18 ` Robin Rosenberg
2006-10-28 22:46 ` Jakub Narebski
2006-10-29 6:54 ` Ilpo Nyyssönen
2006-10-29 12:01 ` Jakub Narebski
2006-10-29 18:24 ` Matthew D. Fuller
2006-10-29 18:39 ` Jakub Narebski
2006-10-30 0:10 ` Theodore Tso
2006-10-30 10:18 ` Progress reporting (was: VCS comparison table) Jakub Narebski
2006-10-30 15:21 ` Nicolas Pitre
2006-10-26 12:12 ` VCS comparison table Matthew D. Fuller
2006-10-26 12:18 ` Jakub Narebski
2006-10-26 15:06 ` Matthew D. Fuller
2006-10-26 13:47 ` Aaron Bentley
2006-10-26 13:53 ` Jakub Narebski
2006-10-26 15:13 ` Aaron Bentley
2006-10-30 21:46 ` Jan Hudec
2006-10-23 22:45 ` Jakub Narebski
2006-10-23 23:14 ` Erik Bågfors
2006-10-23 23:24 ` Linus Torvalds
2006-10-24 0:26 ` Matthew D. Fuller
2006-10-24 0:38 ` Matthew D. Fuller
2006-10-24 5:42 ` Linus Torvalds
2006-10-24 5:47 ` Shawn Pearce
2006-10-24 16:46 ` Matthew D. Fuller
2006-10-24 0:47 ` Carl Worth
2006-10-24 7:31 ` Erik Bågfors
2006-10-24 21:51 ` Erik Bågfors
2006-10-25 12:41 ` Andreas Ericsson
2006-10-25 13:15 ` Erik Bågfors
2006-10-24 0:39 ` Martin Langhoff
2006-10-24 7:52 ` Erik Bågfors
2006-10-24 8:37 ` Jakub Narebski
2006-10-24 10:11 ` Martin Langhoff
2006-10-24 9:30 ` Jelmer Vernooij
2006-10-26 15:22 ` Aaron Bentley
2006-10-25 18:41 ` Aaron Bentley
2006-10-24 9:51 ` Matthieu Moy
2006-10-24 10:27 ` Jakub Narebski
2006-10-25 10:52 ` Andreas Ericsson
2006-10-25 19:53 ` Junio C Hamano
2006-10-20 2:53 ` James Henstridge
2006-10-20 9:51 ` Jakub Narebski
2006-10-20 10:42 ` James Henstridge
2006-10-20 13:17 ` Jakub Narebski
2006-10-20 13:36 ` Petr Baudis
2006-10-20 14:12 ` Jakub Narebski
2006-10-20 14:59 ` James Henstridge
2006-10-20 22:50 ` Jakub Narebski
2006-10-20 22:58 ` Petr Baudis
2006-10-20 10:53 ` Jakub Narebski
2006-10-20 12:34 ` Matthieu Moy
2006-10-20 13:20 ` Jakub Narebski
2006-10-20 13:47 ` Petr Baudis
2006-10-19 17:01 ` Carl Worth
2006-10-19 17:14 ` J. Bruce Fields
2006-10-20 14:31 ` Jeff King
2006-10-20 15:33 ` J. Bruce Fields
2006-10-20 15:43 ` Jeff King
2006-10-19 15:25 ` Linus Torvalds
2006-10-19 16:13 ` Matthew D. Fuller
2006-10-19 16:49 ` Linus Torvalds
2006-10-19 18:30 ` Linus Torvalds
2006-10-19 18:54 ` Matthieu Moy
2006-10-19 20:47 ` Linus Torvalds
2006-10-21 5:49 ` Junio C Hamano
2006-10-19 23:28 ` Ryan Anderson
2006-10-19 19:16 ` Junio C Hamano
2006-10-20 10:51 ` Jakub Narebski
2006-10-20 15:58 ` Linus Torvalds
2006-10-19 5:33 ` Jan Hudec
2006-10-19 7:02 ` Erik Bågfors
2006-10-19 8:49 ` Christian MICHON
2006-10-19 8:58 ` Andreas Ericsson
2006-10-19 9:10 ` Matthieu Moy
2006-10-19 14:57 ` Tim Webster
2006-10-19 15:30 ` Aaron Bentley
2006-10-20 3:14 ` Tim Webster
2006-10-20 4:05 ` Aaron Bentley
2006-10-21 12:30 ` Jan Hudec
2006-10-21 13:05 ` Jakub Narebski
2006-10-21 13:15 ` Jan Hudec
2006-10-21 13:29 ` Jakub Narebski
2006-10-21 16:56 ` Aaron Bentley
2006-10-21 17:03 ` Jakub Narebski
2006-10-21 17:31 ` Linus Torvalds
2006-10-21 17:38 ` Linus Torvalds
2006-10-22 7:49 ` Tim Webster
2006-10-22 17:12 ` Linus Torvalds
2006-10-23 5:19 ` Matthew Hannigan
2006-10-20 10:44 ` Jakub Narebski
2006-10-19 16:14 ` Matthieu Moy
2006-10-20 3:40 ` Tim Webster
2006-10-19 15:45 ` Ramon Diaz-Uriarte
2006-10-20 10:40 ` Jakub Narebski
2006-10-20 13:36 ` Shawn Pearce
2006-10-21 12:30 ` Matthew D. Fuller
2006-10-19 11:37 ` Petr Baudis
2006-10-19 15:17 ` Matthew D. Fuller
2006-10-20 13:22 ` Horst H. von Brand
2006-10-20 13:46 ` Christian MICHON
2006-10-20 15:05 ` Jakub Narebski
2006-10-20 15:16 ` Johannes Schindelin
2006-10-20 15:28 ` Jakub Narebski
2006-10-20 15:39 ` Johannes Schindelin
2006-10-20 16:05 ` Jakub Narebski
2006-10-20 16:24 ` Jakub Narebski
2006-10-18 3:25 ` Ryan Anderson
2006-10-17 23:24 ` Jakub Narebski
2006-10-17 23:50 ` Linus Torvalds
2006-10-17 23:35 ` Jakub Narebski
2006-10-17 9:20 ` Jakub Narebski
2006-10-17 9:40 ` Robert Collins
2006-10-17 10:08 ` Andreas Ericsson
2006-10-17 10:47 ` Matthieu Moy
2006-10-18 4:55 ` Robert Collins
2006-10-18 8:53 ` Andreas Ericsson
2006-10-18 11:15 ` Petr Baudis
2006-10-18 15:31 ` Linus Torvalds
2006-10-18 15:50 ` Jakub Narebski
2006-10-18 16:22 ` Linus Torvalds
2006-10-17 16:41 ` Linus Torvalds
2006-10-17 22:27 ` Robert Collins
[not found] ` <20061017191838.1c36499b.seanlkml@sympatico.ca>
2006-10-17 23:18 ` Sean
2006-10-17 23:18 ` Sean
2006-10-17 23:33 ` Petr Baudis
2006-10-18 5:26 ` Robert Collins
2006-10-18 21:46 ` Alternate revno proposal (Was: Re: VCS comparison table) Jan Hudec
2006-10-18 22:14 ` Jakub Narebski
2006-10-19 5:45 ` Jan Hudec
2006-10-19 8:19 ` Alexander Belchenko
2006-10-21 13:48 ` Jan Hudec
2006-10-20 2:09 ` Horst H. von Brand
2006-10-20 5:38 ` Jan Hudec
2006-10-17 9:59 ` VCS comparison table Andreas Ericsson
2006-10-17 9:37 ` Robert Collins
[not found] ` <20061017060112.2d036f96.seanlkml@sympatico.ca>
2006-10-17 10:01 ` Sean
2006-10-17 10:01 ` Sean
2006-10-17 10:06 ` Jakub Narebski
2006-10-16 23:35 ` Linus Torvalds
2006-10-16 23:55 ` Jakub Narebski
2006-10-17 0:04 ` Johannes Schindelin
2006-10-17 0:23 ` Linus Torvalds
2006-10-17 0:36 ` Johannes Schindelin
2006-10-17 1:17 ` Nguyen Thai Ngoc Duy
2006-10-17 7:26 ` Christian MICHON
2006-10-17 0:08 ` Linus Torvalds
2006-10-17 0:24 ` Jakub Narebski
2006-10-17 4:31 ` Aaron Bentley
2006-10-19 19:01 ` Nathaniel Smith
2006-10-20 10:32 ` Jakub Narebski
2006-10-17 0:29 ` Luben Tuikov
2006-10-17 4:24 ` Aaron Bentley
2006-10-17 7:50 ` Andreas Ericsson
2006-10-17 14:05 ` Aaron Bentley
[not found] ` <20061017103423.a9589295.seanlkml@sympatico.ca>
2006-10-17 14:34 ` Sean
2006-10-17 15:05 ` Andreas Ericsson
2006-10-17 15:32 ` Matthieu Moy
2006-10-17 19:44 ` Aaron Bentley
2006-10-17 23:28 ` Petr Baudis
2006-10-17 23:39 ` Jakub Narebski
2006-10-18 0:24 ` Aaron Bentley
2006-10-17 8:30 ` Jakub Narebski
2006-10-17 11:19 ` Matthieu Moy
2006-10-17 11:45 ` Jakub Narebski
2006-10-17 12:02 ` Jakub Narebski
[not found] ` <20061017080702.615a3b2f.seanlkml@sympatico.ca>
2006-10-17 12:07 ` Sean
2006-10-17 12:07 ` Sean
2006-10-21 8:27 ` Jakub Narebski
2006-10-21 8:48 ` Erik Bågfors
2006-10-17 13:33 ` Matthieu Moy
2006-10-17 12:00 ` Andreas Ericsson
2006-10-17 13:27 ` Matthieu Moy
2006-10-17 13:55 ` Jakub Narebski
2006-10-17 14:08 ` Matthieu Moy
2006-10-17 14:41 ` Jakub Narebski
2006-10-18 0:00 ` Petr Baudis
2006-10-18 0:30 ` Aaron Bentley
2006-10-18 0:39 ` Petr Baudis
2006-10-18 1:28 ` Jakub Narebski
2006-10-18 1:44 ` Carl Worth
2006-10-18 3:27 ` Aaron Bentley
2006-10-18 9:20 ` Jakub Narebski
2006-10-18 16:31 ` Aaron Bentley
2006-10-21 15:56 ` Jan Hudec
2006-10-21 16:13 ` Jakub Narebski
[not found] ` <20061018003920.GK20017@pasky.or.cz>
2006-10-18 9:28 ` Erik Bågfors
2006-10-18 11:08 ` Petr Baudis
2006-10-18 11:17 ` Jakub Narebski
2006-10-18 13:09 ` Erik Bågfors
2006-10-18 18:03 ` Jeff Licquia
2006-10-17 14:01 ` Andreas Ericsson
2006-10-17 14:24 ` Matthieu Moy
2006-10-17 14:19 ` Olivier Galibert
2006-10-17 15:37 ` Matthieu Moy
2006-10-18 1:46 ` Petr Baudis
[not found] ` <20061017073839.3728d1e7.seanlkml@sympatico.ca>
2006-10-17 11:38 ` Sean
2006-10-17 11:38 ` Sean
2006-10-17 12:03 ` Matthieu Moy
2006-10-17 12:56 ` Jakub Narebski
[not found] ` <20061017085723.7542ee6c.seanlkml@sympatico.ca>
2006-10-17 12:57 ` Sean
2006-10-17 12:57 ` Sean
2006-10-17 13:44 ` Matthieu Moy
[not found] ` <20061017100150.b4919aac.seanlkml@sympatico.ca>
2006-10-17 14:01 ` Sean
2006-10-17 14:19 ` Matthieu Moy
[not found] ` <20061017110655.f7bcf3f1.seanlkml@sympatico.ca>
2006-10-17 15:06 ` Sean
2006-10-17 15:06 ` Sean
2006-10-18 0:14 ` Petr Baudis
2006-10-18 1:36 ` Integrating gitweb and git-browser (was: Re: VCS comparison table) Jakub Narebski
2006-10-18 1:52 ` Petr Baudis
2006-10-18 1:58 ` Jakub Narebski
2006-10-18 2:02 ` Petr Baudis
2006-10-17 14:01 ` VCS comparison table Sean
2006-10-18 0:25 ` Petr Baudis
2006-10-18 0:38 ` Aaron Bentley
[not found] ` <4535778D.40006@utoronto.ca>
2006-10-18 0:42 ` Petr Baudis
2006-10-18 0:48 ` Jakub Narebski
[not found] ` <20061018004209.GL20017@pasky.or.cz>
2006-10-18 0:50 ` Aaron Bentley
[not found] ` <45357A6E.3050603@utoronto.ca>
2006-10-18 0:57 ` Petr Baudis
2006-10-18 1:05 ` Aaron Bentley
2006-10-18 1:11 ` Petr Baudis
2006-10-18 6:44 ` Matthieu Moy
2006-10-18 7:16 ` Shawn Pearce
2006-10-21 14:13 ` Jan Hudec
[not found] ` <20061021102346.9cd3abce.seanlkml@sympatico.ca>
2006-10-21 14:23 ` Sean
2006-10-21 16:19 ` Erik Bågfors
2006-10-21 16:31 ` Jakub Narebski
[not found] ` <BAYC1-PASMTP01706CD2FCBE923333A0CBAE020@CEZ.ICE>
2006-10-21 16:35 ` Erik Bågfors
[not found] ` <BAYC1-PASMTP04FAD1FBB91BA4C07A5E79AE020@CEZ.ICE>
2006-10-21 17:33 ` Erik Bågfors
2006-10-21 21:04 ` Linus Torvalds
2006-10-21 23:58 ` Linus Torvalds
2006-10-22 0:13 ` Erik Bågfors
2006-10-22 0:22 ` Jakub Narebski
2006-10-22 1:00 ` Theodore Tso
2006-10-22 0:09 ` Erik Bågfors
2006-10-27 4:51 ` Jan Hudec
2006-10-28 11:38 ` Jakub Narebski
2006-10-21 14:23 ` Sean
2006-10-21 18:34 ` Jan Hudec
[not found] ` <20061021144704.71d75e83.seanlkml@sympatico.ca>
2006-10-21 18:47 ` Sean
2006-10-21 18:47 ` Sean
[not found] ` <20061017062313.cd41e031.seanlkml@sympatico.ca>
2006-10-17 10:23 ` Sean
2006-10-17 10:23 ` Sean
2006-10-17 10:30 ` Johannes Schindelin
[not found] ` <20061017063549.da130b5f.seanlkml@sympatico.ca>
2006-10-17 10:35 ` Sean
2006-10-17 10:35 ` Sean
2006-10-17 10:45 ` Matthias Kestenholz
2006-10-17 13:48 ` Aaron Bentley
2006-10-17 19:51 ` Aaron Bentley
2006-10-21 18:58 ` Jan Hudec
[not found] ` <20061021150233.c29e11c5.seanlkml@sympatico.ca>
2006-10-21 19:02 ` Sean
2006-10-21 19:02 ` Sean
2006-10-20 8:26 ` James Henstridge
2006-10-20 10:19 ` Jakub Narebski
2006-10-20 8:56 ` Erik Bågfors
2006-10-17 15:03 ` Linus Torvalds
2006-10-16 23:45 ` Johannes Schindelin
2006-10-17 2:40 ` Petr Baudis
2006-10-17 5:08 ` Aaron Bentley
2006-10-17 5:25 ` Carl Worth
2006-10-17 5:31 ` Shawn Pearce
2006-10-17 6:23 ` Junio C Hamano
2006-10-17 18:52 ` J. Bruce Fields
2006-10-17 19:12 ` Jakub Narebski
[not found] ` <20061017062341.8a5c8530.seanlkml@sympatico.ca>
2006-10-17 10:23 ` Sean
2006-10-17 10:23 ` Sean
2006-10-18 6:33 ` Jeff King
2006-10-17 9:33 ` Robert Collins
2006-10-17 9:45 ` Jakub Narebski
2006-10-14 20:20 ` Jakub Narebski
2006-10-14 23:06 ` Jon Smirl
2006-10-14 23:34 ` Jakub Narebski
[not found] ` <20061014200356.e7b56402.seanlkml@sympatico.ca>
2006-10-15 0:03 ` Sean
2006-10-15 0:34 ` Jon Smirl
[not found] ` <20061014214452.8c2d2a5c.seanlkml@sympatico.ca>
2006-10-15 1:44 ` Sean
2006-10-15 0:53 ` Jakub Narebski
2006-10-15 15:37 ` Jakub Narebski
2006-10-15 18:23 ` Petr Baudis
[not found] ` <20061015143956.86db3a8b.seanlkml@sympatico.ca>
2006-10-15 18:39 ` Sean
2006-10-15 19:24 ` Petr Baudis
2006-10-15 19:49 ` Jon Smirl
2006-10-16 3:23 ` Petr Baudis
2006-10-16 3:30 ` Jon Smirl
2006-10-17 3:52 ` Sam Vilain
2006-10-17 12:59 ` Jon Smirl
-- strict thread matches above, loose matches on Subject: below --
2006-10-20 8:43 linux
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20061022124635.GR75501@over-yonder.net \
--to=fullermd@over-yonder.net \
--cc=bazaar-ng@lists.canonical.com \
--cc=cworth@cworth.org \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).