Re: VCS comparison table

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Carl Worth
Date: Friday, October 20, 2006 - 2:48 pm

On Thu, 19 Oct 2006 21:06:40 -0400, Aaron Bentley wrote:

Well, I'm glad to know we each feel like we are communicating at
times, here.


The entire discussion is about how to name things in a distributed
system. The premise that Linus has put forth in a very compelling way,
is that attempting to use sequential numbers for names in a
distributed system will break down. The breakdown could be that the
names are not stable, or that the system is used in a centralized way
to avoid the instability of the names.

Now, that causality might not accurately describe the way bzr has
developed. It may be that the centralization bias was determined by
other reasons, and that given those, using sequential numbers for
names makes perfect sense.

But it really is fundamental and unavoidable that sequential numbers
don't work as names in a distributed version control system.


Granted, everything can be stored in one repository. But that still
doesn't change what I was trying to say with my example. One of the
repositories would "win" (the names it published during the fork would
still be valid). And the other repository would "lose" (the names it
published would be not valid anymore). Right?

Now, maybe there's some "simple" mapping from old names to new names
for the losing repository, (something like adding a prefix of
"losers/" to the beginning of the names or something or adding a "15."
prefix or whatever). The point is that the old names are
invalidated. And there's no way to guarantee this kind of change won't
happen in the future, (no matter how old a project is).

I constructed that example to show that the naming has a social impact
in forcing a distinction between winners and losers in the merge, (or
mainline and side branch, or whatever you want to name the
distinction). The two re-joining projects could be really amiable,
create a new virgin mainline and treat both histories as side
branches. In this version, everyone loses as all the old names are
invalidated.


Git allows this just fine. And lots of branches belonging to a single
project is definitely the common usage. It is not common (nor
encouraged) for unrelated projects to share a repository, since a git
clone will fetch every branch in the repository. common for a single
base URL to provide a common basis for a hierarchy of git
repositories, (see, for example http://repo.or.cz/), and that may
provide similar benefits.

I'm noticing another terminology conflict here. The notion of "branch"
in bzr is obviously very different than in git. For example the bzr
man page has a sentence beginning with "if there is already a branch
at the location but it has no working tree". I'm still not sure
exactly what a bzr branch is, but it's clearly something different
from a git branch, (which is absolutely nothing more than a name
referencing a particular commit object). [Note: after playing with it
a bit more down below, a bzr "branch" appears to be something like a
git "repository" that can only hold a single branch.]


I strongly disagree on this point. One, I don't think that the "time
for a branch to go dark" is necessarily long, (or if it is, then
that's another barrier that's setup against distributed
development---people have to have a long-term repository before they
can usefully start publishing a branch). Second, I'm not comfortable
with any limit on usefulness of history. Would you willingly throw
away commits, mailing list posts, or closed bug reports older than any
given age for any projects that you care about?


OK. So now I had to actually try things out. I went ahead and
installed bzr and was able to init and commit from the man page. I had
to go to IRC to figure out how to create and change branches, (the
documentation for "bzr branch" just said FROM_LOCATION and TO_LOCATION
and I couldn't figure out what to pass for those).

Here's the setup I came up with for a tweaked version of the a[bc]m
diamond example I showed with git earlier, (I just added a second
commit to each branch before merging):

	mkdir bzrtest; cd bzrtest
	mkdir master; cd master; bzr init
	touch a; bzr add a; bzr commit -m "Initial commit of a"
	cd ..
	bzr branch master b; cd b
	touch b; bzr add b; bzr commit -m "Commit b on b branch"
	echo "change" > b; bzr commit -m "Change b on b branch"
	cd ..
	bzr branch master c; cd c
	touch c; bzr add c; bzr commit -m "Commit c on c branch"
	echo "change" > c; bzr commit -m "Change c on c branch"
	cd ../master
	bzr merge ../b; bzr commit -m "Merge in b"
	bzr merge ../c; bzr commit -m "Merge in c"

First, I've been told that this is a lot less efficient than possible
since I have what in bzr terms is three unshared "branches" here,
(what git would really call three separate "repositories").

Second, I think that using the filesystem for separating branches is a
really bad idea. One, it intrudes on my branch namespace, (note that
in many commands above I have to use things like "../b" where I'd like
to just name my branch "b". Two, it prevents bzr from having any
notion of "all branches" in places where git takes advantage of it,
(such as git-clone and "gitk --all"). Three, it certainly encourages
the storage problem I ran into above, (and I'd be interested to see a
"corrected" version of the commands above to fix the storage
inefficiencies).

But anyway, those are all new topics, what we were trying to talk
about is revision numbers. After the above commands I can run bzr log
in my three branches, master, b, and c and I get the following
revision number sequences:

master: 1 2 3
b: 1 2 3
c: 1 2 3

And from this state if I ask questions with bzr missing and look at
just the revision numbers, then the answers are useless. I get answers
like:

	.../b:$ bzr missing ../c
	You have 2 extra revision(s):
	revno: 3
	  Change b on b branch
	revno: 2
	  Commit b on b branch

	You are missing 2 revision(s):
	revno: 3
	  Change c on c branch
	revno: 2
	  Commit c on c branch

	.../b:$ bzr missing ../master
	You are missing 2 revision(s):
	revno: 3
	  Merge in c
	revno: 2
	  Merge in b

So there we have the revision numbers 2 and 3 each being used to name
three different revisions. That's a lot of aliasing already.
Then, if the b and c branches each treat master as their mainline and
each pull, then both branches get their numbers all shuffled.

Oh, drat. I just realized that I'm running 0.11 here which doesn't
have the dotted-decimal numbers. (I'm trying to get bzr.dev too, but
it appears to be stuck about 40% of the way through "Fetch phase
1/4" [Note: it ). In this version, the commits brought in as part of a merge
don't get any "simple" number at all and instead "bzr log" shows a
merge ID.

I hadn't realized that the dotted decimal notation was so new that the
community hadn't had a lot of experience with it yet. But, your
description doesn't actually presume that notation. What you asked
was:

	> When you create a new branch from scratch, the number starts at zero.
	> If you copy a branch, you copy its number, too.
	>
	> Every time you commit, the number is incremented.  If you pull, your
	> numbers are adjusted to be identical to those of the branch you pulled from.
	>
	> Is that really complicated?

And to answer. That description doesn't describe at all what happens
to the "simple" numbers of commits that are merged. In the version I
have, they disappear and get replaced with "ugly" numbers. In 0.12
something else happens instead, (that's the part I don't understand
yet).

And my argument isn't just "confusing" it's "confusing or
useless". I understand that pull destroys numbers, and how, but that
makes the numbers I had generated earlier useless. I still don't
understand how people can avoid number changing, (since pull seems the
only way to synch up without infinite new merge commits being added
back and forth).

So, yes, it really is complicated or my brain is just too small.


Sure. But I'll gladly take a simple system with superficial warts than
a complex system with superficial beauty.


With git I get to see a revision number of b62710d4 and know that
"diff b62710d4^ b62710d4" will show its changes, though much more
likely just "show b62710d4". I really cannot fathom a place where
arithmetic on revision numbers does something useful that git revision
specifications don't do just as easily. Anybody have an example for
me?

-Carl

PS. The "bzr branch" of bzr.dev did eventually finish. I can see the
dotted-decimal numbers in my example now, (1.1.1 and 1.2.2 for the
commits that came from branch b; 1.2.1 and 1.2.2 for the commits that
came from branch c). At 5 characters a piece these are well on their
way to getting just as "ugly" as git names, (once it's all
cut-and-paste the difference in ugliness is negligible).

And now, I see it's not just pull that does number rewriting. If I use
the following command (after the chunk of commands above):

	cd ..; bzr branch -r 1.2.2 master 1.2.2

It appears to just create newly linearized revision numbers from whole
cloth for the new branch (1, 2, and 3 corresponding to mainline 1,
1.2.1, and 1.2.2). That's totally surprising, very confusing, and
would invalidate any use I wanted to make of published revision
numbers for the mainline branch while I was working on this branch.

See? This stuff really doesn't work.

Motivating scenario for the above: Imagine 1.2.3 commited garbage so I
want to fix it by branching from 1.2.2 rather than the mainline
"2". Then after I branch, I learn something about "1.2.1" that I want
to investigate more closely. I try to inspect that in my branch, but
ouch! I don't have that revision.

Is there even a way to say "show me the change introduced by what is
named '1.2.1' in the source branch in this scenario" ?

Note: In #bzr I just learned that there is a way for me to do this
_if_ I also happen to have a pull of the original branch somewhere on
my machine. Something like:

	bzr diff -r1.2.0:../master -r1.2.1:../master

I don't know if there's a way to get diff's .. notation to work with
that, (I can't manage to). But these simple numbers are getting less
simple all the time.

With git, if I find a revision number somewhere, I can cut-and-paste
it and get the right thing:

	git show b62710d4f8602203d848daf2d444865b611fff09

But with bzr if I find "1.2.1" somewhere I'm likely to type:

	bzr diff -r1.2.0..1.2.1

If I'm lucky, then that fails with:

	bzr: ERROR: Requested revision: '1.2.0' does not exist in branch:

and I go back to the source, find out what branch it was referring to,
remember where that is on my machine (../master, say), and manually
type that to my command line to get:

	bzr diff -r1.2.0:../master -r1.2.1:../master

If I'm unlucky then the first diff comes up with some unrelated commit
and I get to be confused before I go through that same process.

Now do you see? It really, really does not work. This stuff is about
as un-simple as could be, and this things will happen.
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Re: VCS comparison table, Jakub Narebski, (Sat Oct 14, 9:40 am)
Re: VCS comparison table, Jon Smirl, (Sat Oct 14, 10:18 am)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 14, 10:42 am)
Re: VCS comparison table, Aaron Bentley, (Mon Oct 16, 3:26 pm)
Re: VCS comparison table, Andy Whitcroft, (Mon Oct 16, 3:35 pm)
Re: VCS comparison table, Jakub Narebski, (Mon Oct 16, 4:19 pm)
Re: VCS comparison table, Linus Torvalds, (Mon Oct 16, 4:35 pm)
Re: VCS comparison table, Nguyen Thai Ngoc Duy, (Mon Oct 16, 4:39 pm)
Re: VCS comparison table, Johannes Schindelin, (Mon Oct 16, 4:45 pm)
Re: VCS comparison table, Jakub Narebski, (Mon Oct 16, 4:55 pm)
Re: VCS comparison table, Johannes Schindelin, (Mon Oct 16, 5:04 pm)
Re: VCS comparison table, Linus Torvalds, (Mon Oct 16, 5:08 pm)
Re: VCS comparison table, Linus Torvalds, (Mon Oct 16, 5:23 pm)
Re: VCS comparison table, Luben Tuikov, (Mon Oct 16, 5:29 pm)
Re: VCS comparison table, Johannes Schindelin, (Mon Oct 16, 5:36 pm)
Re: VCS comparison table, Nguyen Thai Ngoc Duy, (Mon Oct 16, 6:17 pm)
Re: VCS comparison table, Petr Baudis, (Mon Oct 16, 7:40 pm)
Re: VCS comparison table, Aaron Bentley, (Mon Oct 16, 9:24 pm)
Re: VCS comparison table, Aaron Bentley, (Mon Oct 16, 9:31 pm)
Re: VCS comparison table, Aaron Bentley, (Mon Oct 16, 9:56 pm)
Re: VCS comparison table, Aaron Bentley, (Mon Oct 16, 10:08 pm)
Re: VCS comparison table, Shawn Pearce, (Mon Oct 16, 10:20 pm)
Re: VCS comparison table, Carl Worth, (Mon Oct 16, 10:25 pm)
Re: VCS comparison table, Shawn Pearce, (Mon Oct 16, 10:31 pm)
Re: VCS comparison table, Junio C Hamano, (Mon Oct 16, 11:23 pm)
Re: VCS comparison table, Christian MICHON, (Tue Oct 17, 12:26 am)
Re: VCS comparison table, Andreas Ericsson, (Tue Oct 17, 12:50 am)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 1:15 am)
Re: VCS comparison table, Andreas Ericsson, (Tue Oct 17, 1:16 am)
Re: VCS comparison table, Martin Pool, (Tue Oct 17, 1:21 am)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 1:30 am)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 2:20 am)
Re: VCS comparison table, Robert Collins, (Tue Oct 17, 2:33 am)
Re: VCS comparison table, Robert Collins, (Tue Oct 17, 2:37 am)
Re: VCS comparison table, Robert Collins, (Tue Oct 17, 2:40 am)
Re: VCS comparison table, Andreas Ericsson, (Tue Oct 17, 2:59 am)
Re: VCS comparison table, Sean, (Tue Oct 17, 3:01 am)
Re: VCS comparison table, Andreas Ericsson, (Tue Oct 17, 3:08 am)
Re: VCS comparison table, Sean, (Tue Oct 17, 3:23 am)
Re: VCS comparison table, Sean, (Tue Oct 17, 3:23 am)
Re: VCS comparison table, Johannes Schindelin, (Tue Oct 17, 3:30 am)
Re: VCS comparison table, Sean, (Tue Oct 17, 3:35 am)
Re: VCS comparison table, Matthias Kestenholz, (Tue Oct 17, 3:45 am)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 3:47 am)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 4:19 am)
Re: VCS comparison table, Sean, (Tue Oct 17, 4:38 am)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 4:45 am)
Re: VCS comparison table, Andreas Ericsson, (Tue Oct 17, 5:00 am)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 5:02 am)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 5:03 am)
Re: VCS comparison table, Sean, (Tue Oct 17, 5:07 am)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 5:56 am)
Re: VCS comparison table, Sean, (Tue Oct 17, 5:57 am)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 6:27 am)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 6:33 am)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 6:44 am)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 6:48 am)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 6:55 am)
Re: VCS comparison table, Andreas Ericsson, (Tue Oct 17, 7:01 am)
Re: VCS comparison table, Sean, (Tue Oct 17, 7:01 am)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 7:05 am)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 7:08 am)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 7:19 am)
Re: VCS comparison table, Olivier Galibert, (Tue Oct 17, 7:19 am)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 7:24 am)
Re: VCS comparison table, Sean, (Tue Oct 17, 7:34 am)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 7:41 am)
Re: VCS comparison table, Linus Torvalds, (Tue Oct 17, 8:03 am)
Re: VCS comparison table, Andreas Ericsson, (Tue Oct 17, 8:05 am)
Re: VCS comparison table, Sean, (Tue Oct 17, 8:06 am)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 8:32 am)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 8:37 am)
Re: VCS comparison table, Linus Torvalds, (Tue Oct 17, 9:41 am)
Re: VCS comparison table, J. Bruce Fields, (Tue Oct 17, 11:52 am)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 12:44 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 12:51 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 1:01 pm)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 2:01 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 2:27 pm)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 2:51 pm)
Re: VCS comparison table, Sean, (Tue Oct 17, 3:00 pm)
Re: VCS comparison table, Linus Torvalds, (Tue Oct 17, 3:03 pm)
Re: VCS comparison table, Robert Collins, (Tue Oct 17, 3:27 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 3:28 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 3:44 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 3:53 pm)
Re: VCS comparison table, Sean, (Tue Oct 17, 3:56 pm)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 3:57 pm)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 3:59 pm)
Re: VCS comparison table, Linus Torvalds, (Tue Oct 17, 4:09 pm)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 4:11 pm)
Re: VCS comparison table, Linus Torvalds, (Tue Oct 17, 4:16 pm)
Re: VCS comparison table, Sean, (Tue Oct 17, 4:18 pm)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 4:24 pm)
Re: VCS comparison table, Petr Baudis, (Tue Oct 17, 4:28 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 4:33 pm)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 4:35 pm)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 4:39 pm)
Re: VCS comparison table, Linus Torvalds, (Tue Oct 17, 4:50 pm)
Re: VCS comparison table, Petr Baudis, (Tue Oct 17, 5:00 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 5:23 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 5:24 pm)
Re: VCS comparison table, Petr Baudis, (Tue Oct 17, 5:25 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 5:30 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 5:38 pm)
Re: VCS comparison table, Petr Baudis, (Tue Oct 17, 5:39 pm)
Re: VCS comparison table, Petr Baudis, (Tue Oct 17, 5:42 pm)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 5:46 pm)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 5:48 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 5:50 pm)
Re: VCS comparison table, Petr Baudis, (Tue Oct 17, 5:57 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 6:00 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 6:05 pm)
Re: VCS comparison table, Petr Baudis, (Tue Oct 17, 6:11 pm)
Re: VCS comparison table, Carl Worth, (Tue Oct 17, 6:25 pm)
Re: VCS comparison table, Jakub Narebski, (Tue Oct 17, 6:28 pm)
Re: VCS comparison table, Carl Worth, (Tue Oct 17, 6:44 pm)
Re: VCS comparison table, Petr Baudis, (Tue Oct 17, 6:46 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 8:10 pm)
Re: VCS comparison table, Ryan Anderson, (Tue Oct 17, 8:25 pm)
Re: VCS comparison table, Aaron Bentley, (Tue Oct 17, 8:27 pm)
Re: VCS comparison table, Linus Torvalds, (Tue Oct 17, 8:35 pm)
Re: VCS comparison table, Robert Collins, (Tue Oct 17, 9:55 pm)
Re: VCS comparison table, Jeff King, (Tue Oct 17, 10:36 pm)
Re: VCS comparison table, Junio C Hamano, (Tue Oct 17, 10:57 pm)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 11:22 pm)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 17, 11:44 pm)
Re: VCS comparison table, Shawn Pearce, (Wed Oct 18, 12:16 am)
Re: VCS comparison table, Andreas Ericsson, (Wed Oct 18, 1:13 am)
Re: VCS comparison table, Andreas Ericsson, (Wed Oct 18, 1:39 am)
Re: VCS comparison table, Andreas Ericsson, (Wed Oct 18, 1:53 am)
Re: VCS comparison table, Peter Baumann, (Wed Oct 18, 2:04 am)
Re: VCS comparison table, Jakub Narebski, (Wed Oct 18, 2:07 am)
Re: VCS comparison table, Jakub Narebski, (Wed Oct 18, 2:20 am)
Re: VCS comparison table, zindar, (Wed Oct 18, 2:28 am)
Re: VCS comparison table, Matthew D. Fuller, (Wed Oct 18, 3:32 am)
Re: VCS comparison table, Petr Baudis, (Wed Oct 18, 4:08 am)
Re: VCS comparison table, Petr Baudis, (Wed Oct 18, 4:15 am)
Re: VCS comparison table, Jakub Narebski, (Wed Oct 18, 4:17 am)
Re: VCS comparison table, Andreas Ericsson, (Wed Oct 18, 4:19 am)
Re: VCS comparison table, Matthew D. Fuller, (Wed Oct 18, 5:43 am)
Re: VCS comparison table, Sean, (Wed Oct 18, 6:02 am)
Re: VCS comparison table, zindar, (Wed Oct 18, 6:09 am)
Re: VCS comparison table, Jakub Narebski, (Wed Oct 18, 6:10 am)
Re: VCS comparison table, Linus Torvalds, (Wed Oct 18, 7:52 am)
Re: VCS comparison table, Linus Torvalds, (Wed Oct 18, 8:31 am)
Re: VCS comparison table, Carl Worth, (Wed Oct 18, 8:38 am)
Re: VCS comparison table, Jakub Narebski, (Wed Oct 18, 8:50 am)
Re: VCS comparison table, Linus Torvalds, (Wed Oct 18, 9:07 am)
Re: VCS comparison table, Linus Torvalds, (Wed Oct 18, 9:22 am)
Re: VCS comparison table, Aaron Bentley, (Wed Oct 18, 9:31 am)
Re: VCS comparison table, Jeff Licquia, (Wed Oct 18, 11:03 am)
[ANNOUNCE] Example Cogito Addon - cogito-bundle, Petr Baudis, (Wed Oct 18, 11:52 am)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Petr Baudis, (Wed Oct 18, 11:59 am)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Junio C Hamano, (Wed Oct 18, 12:04 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Nicolas Pitre, (Wed Oct 18, 12:09 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Nicolas Pitre, (Wed Oct 18, 12:13 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Shawn Pearce, (Wed Oct 18, 12:18 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Nicolas Pitre, (Wed Oct 18, 12:33 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Junio C Hamano, (Wed Oct 18, 12:33 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Linus Torvalds, (Wed Oct 18, 1:08 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Shawn Pearce, (Wed Oct 18, 1:46 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Shawn Pearce, (Wed Oct 18, 1:47 pm)
Re: VCS comparison table, Charles Duffy, (Wed Oct 18, 2:04 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Linus Torvalds, (Wed Oct 18, 2:17 pm)
Re: VCS comparison table, Jeff King, (Wed Oct 18, 2:20 pm)
Re: VCS comparison table, Sean, (Wed Oct 18, 2:29 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Shawn Pearce, (Wed Oct 18, 2:32 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Nicolas Pitre, (Wed Oct 18, 2:41 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Shawn Pearce, (Wed Oct 18, 2:41 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Junio C Hamano, (Wed Oct 18, 2:42 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Shawn Pearce, (Wed Oct 18, 2:52 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Linus Torvalds, (Wed Oct 18, 2:55 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Junio C Hamano, (Wed Oct 18, 2:56 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Linus Torvalds, (Wed Oct 18, 3:00 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Junio C Hamano, (Wed Oct 18, 3:02 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Shawn Pearce, (Wed Oct 18, 3:05 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Junio C Hamano, (Wed Oct 18, 3:07 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Shawn Pearce, (Wed Oct 18, 3:11 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Junio C Hamano, (Wed Oct 18, 3:13 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Linus Torvalds, (Wed Oct 18, 3:42 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Junio C Hamano, (Wed Oct 18, 3:48 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Nicolas Pitre, (Wed Oct 18, 4:18 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Shawn Pearce, (Wed Oct 18, 4:22 pm)
Re: VCS comparison table, Charles Duffy, (Wed Oct 18, 4:31 pm)
Re: VCS comparison table, Johannes Schindelin, (Wed Oct 18, 4:48 pm)
Re: VCS comparison table, Sean, (Wed Oct 18, 4:49 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Johannes Schindelin, (Wed Oct 18, 4:50 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Linus Torvalds, (Wed Oct 18, 5:07 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Linus Torvalds, (Wed Oct 18, 5:15 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Johannes Schindelin, (Wed Oct 18, 5:31 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Linus Torvalds, (Wed Oct 18, 5:46 pm)
Re: VCS comparison table, Charles Duffy, (Wed Oct 18, 6:58 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Nicolas Pitre, (Wed Oct 18, 8:01 pm)
Re: VCS comparison table, Aaron Bentley, (Wed Oct 18, 8:10 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Junio C Hamano, (Wed Oct 18, 8:46 pm)
Re: VCS comparison table, Carl Worth, (Wed Oct 18, 10:21 pm)
Re: VCS comparison table, Jan Hudec, (Wed Oct 18, 10:33 pm)
Re: VCS comparison table, Martin Pool, (Wed Oct 18, 10:56 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Alexander Belchenko, (Wed Oct 18, 11:46 pm)
Re: VCS comparison table, zindar, (Thu Oct 19, 12:02 am)
Re: VCS comparison table, Christian MICHON, (Thu Oct 19, 1:49 am)
Re: VCS comparison table, Andreas Ericsson, (Thu Oct 19, 1:58 am)
Re: VCS comparison table, Matthieu Moy, (Thu Oct 19, 2:10 am)
Re: VCS comparison table, Matthew D. Fuller, (Thu Oct 19, 2:10 am)
Re: VCS comparison table, Johannes Schindelin, (Thu Oct 19, 4:01 am)
Re: VCS comparison table, Charles Duffy, (Thu Oct 19, 4:10 am)
Re: VCS comparison table, Andreas Ericsson, (Thu Oct 19, 4:15 am)
Re: VCS comparison table, Johannes Schindelin, (Thu Oct 19, 4:24 am)
Re: VCS comparison table, Karl , (Thu Oct 19, 4:27 am)
Re: VCS comparison table, Charles Duffy, (Thu Oct 19, 4:30 am)
Re: VCS comparison table, Petr Baudis, (Thu Oct 19, 4:37 am)
Re: VCS comparison table, Petr Baudis, (Thu Oct 19, 4:46 am)
Re: VCS comparison table, Matthieu Moy, (Thu Oct 19, 5:04 am)
Re: VCS comparison table, Petr Baudis, (Thu Oct 19, 5:33 am)
Re: VCS comparison table, Matthieu Moy, (Thu Oct 19, 6:44 am)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Nicolas Pitre, (Thu Oct 19, 7:27 am)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Linus Torvalds, (Thu Oct 19, 7:55 am)
Re: VCS comparison table, Tim Webster, (Thu Oct 19, 7:57 am)
Re: VCS comparison table, Aaron Bentley, (Thu Oct 19, 7:58 am)
Re: VCS comparison table, Matthew D. Fuller, (Thu Oct 19, 8:17 am)
Re: VCS comparison table, Linus Torvalds, (Thu Oct 19, 8:25 am)
Re: VCS comparison table, Aaron Bentley, (Thu Oct 19, 8:30 am)
Re: VCS comparison table, Ramon Diaz-Uriarte, (Thu Oct 19, 8:45 am)
Re: VCS comparison table, Matthew D. Fuller, (Thu Oct 19, 9:01 am)
Re: VCS comparison table, Carl Worth, (Thu Oct 19, 9:03 am)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Jan Harkes, (Thu Oct 19, 9:07 am)
Re: VCS comparison table, Matthew D. Fuller, (Thu Oct 19, 9:13 am)
Re: VCS comparison table, Matthieu Moy, (Thu Oct 19, 9:14 am)
Re: VCS comparison table, Matthieu Moy, (Thu Oct 19, 9:38 am)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Linus Torvalds, (Thu Oct 19, 9:48 am)
Re: VCS comparison table, Linus Torvalds, (Thu Oct 19, 9:49 am)
Re: VCS comparison table, Carl Worth, (Thu Oct 19, 9:59 am)
Re: VCS comparison table, Carl Worth, (Thu Oct 19, 10:01 am)
Re: VCS comparison table, Matthew D. Fuller, (Thu Oct 19, 10:06 am)
Re: VCS comparison table, J. Bruce Fields, (Thu Oct 19, 10:14 am)
Re: VCS comparison table, Linus Torvalds, (Thu Oct 19, 11:30 am)
Re: VCS comparison table, Matthieu Moy, (Thu Oct 19, 11:54 am)
Re: VCS comparison table, Junio C Hamano, (Thu Oct 19, 12:16 pm)
Re: VCS comparison table, Linus Torvalds, (Thu Oct 19, 1:47 pm)
Re: VCS comparison table, Aaron Bentley, (Thu Oct 19, 4:01 pm)
Re: VCS comparison table, Ryan Anderson, (Thu Oct 19, 4:28 pm)
Re: VCS comparison table, Carl Worth, (Thu Oct 19, 4:42 pm)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Jan Harkes, (Thu Oct 19, 5:20 pm)
[PATCH 2/2] Remove unused index tracking code., Jan Harkes, (Thu Oct 19, 5:20 pm)
Re: VCS comparison table, Aaron Bentley, (Thu Oct 19, 6:06 pm)
Re: [PATCH 2/2] Remove unused index tracking code., Nicolas Pitre, (Thu Oct 19, 6:11 pm)
Re: [PATCH 2/2] Remove unused index tracking code., Junio C Hamano, (Thu Oct 19, 6:35 pm)
Re: [PATCH 2/2] Remove unused index tracking code., Jan Harkes, (Thu Oct 19, 7:27 pm)
Re: [PATCH 2/2] Remove unused index tracking code., Junio C Hamano, (Thu Oct 19, 7:30 pm)
Re: [PATCH 2/2] Remove unused index tracking code., Jan Harkes, (Thu Oct 19, 7:46 pm)
Re: VCS comparison table, James Henstridge, (Thu Oct 19, 7:53 pm)
Re: VCS comparison table, Tim Webster, (Thu Oct 19, 8:14 pm)
Re: [PATCH 2/2] Remove unused index tracking code., Nicolas Pitre, (Thu Oct 19, 8:36 pm)
Re: VCS comparison table, Tim Webster, (Thu Oct 19, 8:40 pm)
Re: VCS comparison table, Aaron Bentley, (Thu Oct 19, 9:05 pm)
Re: VCS comparison table, Linus Torvalds, (Thu Oct 19, 10:05 pm)
Re: VCS comparison table, Lachlan Patrick, (Fri Oct 20, 12:47 am)
Re: VCS comparison table, James Henstridge, (Fri Oct 20, 1:26 am)
Re: VCS comparison table, Johannes Schindelin, (Fri Oct 20, 1:38 am)
Re: VCS comparison table, zindar, (Fri Oct 20, 1:56 am)
Re: VCS comparison table, Matthieu Moy, (Fri Oct 20, 2:43 am)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 2:51 am)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 2:57 am)
Re: VCS comparison table, Matthieu Moy, (Fri Oct 20, 3:02 am)
Re: VCS comparison table, Petr Baudis, (Fri Oct 20, 3:13 am)
Re: VCS comparison table, Petr Baudis, (Fri Oct 20, 3:16 am)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 3:19 am)
Re: VCS comparison table, James Henstridge, (Fri Oct 20, 3:42 am)
Re: VCS comparison table, Andy Whitcroft, (Fri Oct 20, 3:45 am)
Re: VCS comparison table, James Henstridge, (Fri Oct 20, 3:45 am)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 4:00 am)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 4:50 am)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 5:01 am)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 6:17 am)
Re: VCS comparison table , Horst H. von Brand, (Fri Oct 20, 6:22 am)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 6:26 am)
Re: VCS comparison table, Petr Baudis, (Fri Oct 20, 6:36 am)
Re: VCS comparison table, Christian MICHON, (Fri Oct 20, 6:46 am)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Aaron Bentley, (Fri Oct 20, 7:03 am)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 7:12 am)
Re: VCS comparison table, Jeff King, (Fri Oct 20, 7:12 am)
Re: VCS comparison table, Jeff King, (Fri Oct 20, 7:31 am)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 7:40 am)
Re: [ANNOUNCE] Example Cogito Addon - cogito-bundle, Jeff King, (Fri Oct 20, 7:41 am)
Re: VCS comparison table, Johannes Schindelin, (Fri Oct 20, 7:52 am)
Re: VCS comparison table, James Henstridge, (Fri Oct 20, 7:59 am)
Re: VCS comparison table, J. Bruce Fields, (Fri Oct 20, 8:33 am)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 8:34 am)
Re: VCS comparison table, Jeff King, (Fri Oct 20, 8:43 am)
Re: VCS comparison table, Carl Worth, (Fri Oct 20, 2:48 pm)
Re: VCS comparison table, Jakub Narebski, (Fri Oct 20, 3:50 pm)
Re: VCS comparison table, Petr Baudis, (Fri Oct 20, 3:58 pm)
Re: VCS comparison table, Junio C Hamano, (Fri Oct 20, 10:49 pm)
Re: VCS comparison table, Jan Hudec, (Sat Oct 21, 5:30 am)
Re: VCS comparison table, Matthew D. Fuller, (Sat Oct 21, 6:01 am)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 7:08 am)
Re: VCS comparison table, Jan Hudec, (Sat Oct 21, 8:56 am)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 9:13 am)
Re: VCS comparison table, zindar, (Sat Oct 21, 9:31 am)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 9:59 am)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 10:41 am)
Re: VCS comparison table, Aaron Bentley, (Sat Oct 21, 10:57 am)
Re: VCS comparison table, Matthew D. Fuller, (Sat Oct 21, 11:11 am)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 11:20 am)
Re: VCS comparison table, Jan Hudec, (Sat Oct 21, 11:58 am)
Re: VCS comparison table, Sean, (Sat Oct 21, 12:02 pm)
Re: VCS comparison table, Jeff King, (Sat Oct 21, 12:19 pm)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 12:30 pm)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 12:41 pm)
Re: VCS comparison table, Jan Hudec, (Sat Oct 21, 12:47 pm)
Re: VCS comparison table, Linus Torvalds, (Sat Oct 21, 12:55 pm)
Re: VCS comparison table, Aaron Bentley, (Sat Oct 21, 1:05 pm)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 1:19 pm)
Re: VCS comparison table, Carl Worth, (Sat Oct 21, 1:47 pm)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 1:48 pm)
Re: VCS comparison table, Sean, (Sat Oct 21, 1:53 pm)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 1:55 pm)
Re: VCS comparison table, Linus Torvalds, (Sat Oct 21, 2:10 pm)
Re: VCS comparison table, Matthew D. Fuller, (Sat Oct 21, 2:46 pm)
Re: VCS comparison table, Sean, (Sat Oct 21, 3:06 pm)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 3:25 pm)
Re: VCS comparison table, Edgar Toernig, (Sat Oct 21, 3:52 pm)
Re: VCS comparison table, Jeff Licquia, (Sat Oct 21, 4:07 pm)
Re: VCS comparison table, Sean, (Sat Oct 21, 4:25 pm)
Re: VCS comparison table, Aaron Bentley, (Sat Oct 21, 4:39 pm)
Re: VCS comparison table, Jeff Licquia, (Sat Oct 21, 4:42 pm)
Re: VCS comparison table, Carl Worth, (Sat Oct 21, 4:49 pm)
Re: VCS comparison table, Carl Worth, (Sat Oct 21, 5:04 pm)
Re: VCS comparison table, Jeff Licquia, (Sat Oct 21, 5:07 pm)
Re: VCS comparison table, Jakub Narebski, (Sat Oct 21, 5:14 pm)
Re: VCS comparison table, Linus Torvalds, (Sat Oct 21, 5:47 pm)
Re: VCS comparison table, Jan Hudec, (Sun Oct 22, 12:45 am)
Re: VCS comparison table, Jakub Narebski, (Sun Oct 22, 2:05 am)
Re: VCS comparison table, zindar, (Sun Oct 22, 2:56 am)
Re: VCS comparison table, Matthew D. Fuller, (Sun Oct 22, 5:46 am)
Re: VCS comparison table, Jakub Narebski, (Sun Oct 22, 6:23 am)
Re: VCS comparison table, Carl Worth, (Sun Oct 22, 7:25 am)
Re: VCS comparison table, Matthieu Moy, (Sun Oct 22, 7:27 am)
Re: VCS comparison table, zindar, (Sun Oct 22, 7:48 am)
Re: VCS comparison table, Jakub Narebski, (Sun Oct 22, 7:55 am)
Re: VCS comparison table, Jakub Narebski, (Sun Oct 22, 8:04 am)
Re: VCS comparison table, Petr Baudis, (Sun Oct 22, 9:02 am)
Re: VCS comparison table, Matthew D. Fuller, (Sun Oct 22, 11:53 am)
Re: VCS comparison table, David Clymer, (Sun Oct 22, 12:18 pm)
Re: VCS comparison table, Jakub Narebski, (Sun Oct 22, 12:27 pm)
Re: VCS comparison table, David Clymer, (Sun Oct 22, 12:36 pm)
Re: VCS comparison table, Jakub Narebski, (Sun Oct 22, 12:57 pm)
Re: VCS comparison table, Jakub Narebski, (Sun Oct 22, 1:06 pm)
Re: VCS comparison table, David Clymer, (Mon Oct 23, 4:56 am)
Re: VCS comparison table, Jakub Narebski, (Mon Oct 23, 5:54 am)
Re: VCS comparison table, James Henstridge, (Mon Oct 23, 8:01 am)
Re: VCS comparison table, David Lang, (Mon Oct 23, 9:57 am)
Re: VCS comparison table, Aaron Bentley, (Mon Oct 23, 10:18 am)
Re: VCS comparison table, Linus Torvalds, (Mon Oct 23, 10:29 am)
Re: VCS comparison table, Jakub Narebski, (Mon Oct 23, 10:53 am)
Re: VCS comparison table, Linus Torvalds, (Mon Oct 23, 11:04 am)
Re: VCS comparison table, Jakub Narebski, (Mon Oct 23, 11:21 am)
Re: VCS comparison table, Jelmer Vernooij, (Mon Oct 23, 11:26 am)
Re: VCS comparison table, Jakub Narebski, (Mon Oct 23, 11:31 am)
Re: VCS comparison table, Linus Torvalds, (Mon Oct 23, 11:34 am)
Re: VCS comparison table, Jelmer Vernooij, (Mon Oct 23, 11:44 am)
Re: VCS comparison table, Linus Torvalds, (Mon Oct 23, 11:45 am)
Re: VCS comparison table, Jelmer Vernooij, (Mon Oct 23, 11:56 am)
Re: VCS comparison table, Shawn Pearce, (Mon Oct 23, 12:02 pm)
Re: VCS comparison table, Jakub Narebski, (Mon Oct 23, 12:12 pm)
Re: VCS comparison table, Linus Torvalds, (Mon Oct 23, 12:18 pm)
Re: VCS comparison table, Jeff King, (Mon Oct 23, 1:06 pm)
Re: VCS comparison table, Jakub Narebski, (Mon Oct 23, 1:29 pm)
Re: VCS comparison table, Matthew D. Fuller, (Mon Oct 23, 3:21 pm)
Re: VCS comparison table, David Lang, (Mon Oct 23, 3:28 pm)
Re: VCS comparison table, Linus Torvalds, (Mon Oct 23, 3:44 pm)
Re: VCS comparison table, Matthew D. Fuller, (Mon Oct 23, 5:26 pm)
Re: VCS comparison table, David Clymer, (Mon Oct 23, 8:24 pm)
Re: VCS comparison table, Lachlan Patrick, (Mon Oct 23, 11:02 pm)
Re: VCS comparison table, Shawn Pearce, (Mon Oct 23, 11:23 pm)
Re: VCS comparison table, Linus Torvalds, (Mon Oct 23, 11:31 pm)
Re: VCS comparison table, David Rientjes, (Mon Oct 23, 11:45 pm)
Re: VCS comparison table, Matthieu Moy, (Tue Oct 24, 2:51 am)
Re: VCS comparison table, Linus Torvalds, (Tue Oct 24, 8:15 am)
Re: VCS comparison table, David Lang, (Tue Oct 24, 8:58 am)
Re: VCS comparison table, Matthew D. Fuller, (Tue Oct 24, 9:34 am)
Re: VCS comparison table, David Lang, (Tue Oct 24, 11:03 am)
Re: VCS comparison table, David Rientjes, (Tue Oct 24, 1:12 pm)
Re: VCS comparison table, Matthew D. Fuller, (Tue Oct 24, 5:27 pm)
Re: VCS comparison table, Jeff King, (Wed Oct 25, 1:48 am)
Re: VCS comparison table, David Rientjes, (Wed Oct 25, 2:19 am)
Re: VCS comparison table, Andreas Ericsson, (Wed Oct 25, 2:35 am)
Re: VCS comparison table, Jakub Narebski, (Wed Oct 25, 2:46 am)
Re: VCS comparison table, Jeff King, (Wed Oct 25, 2:49 am)
Re: VCS comparison table, Andreas Ericsson, (Wed Oct 25, 2:52 am)
Re: VCS comparison table, Matthieu Moy, (Wed Oct 25, 2:57 am)
Re: VCS comparison table, James Henstridge, (Wed Oct 25, 3:08 am)
Re: VCS comparison table, Andreas Ericsson, (Wed Oct 25, 6:49 am)
Re: VCS comparison table, Carl Worth, (Wed Oct 25, 8:54 am)
Re: VCS comparison table, David Rientjes, (Wed Oct 25, 10:21 am)
Re: VCS comparison table, Jeff King, (Wed Oct 25, 2:03 pm)
Re: VCS comparison table, Junio C Hamano, (Wed Oct 25, 2:08 pm)
Re: VCS comparison table, Jeff King, (Wed Oct 25, 2:16 pm)
Re: VCS comparison table, Junio C Hamano, (Wed Oct 25, 2:32 pm)
Re: VCS comparison table, Junio C Hamano, (Wed Oct 25, 2:50 pm)
Re: VCS comparison table, David Lang, (Wed Oct 25, 2:51 pm)
Re: VCS comparison table, Shawn Pearce, (Wed Oct 25, 3:15 pm)
Re: VCS comparison table, David Lang, (Wed Oct 25, 3:40 pm)
Re: VCS comparison table, David Lang, (Wed Oct 25, 3:41 pm)
Re: VCS comparison table, Matthew D. Fuller, (Wed Oct 25, 4:53 pm)
Re: VCS comparison table, Linus Torvalds, (Wed Oct 25, 7:29 pm)
Re: VCS comparison table, James Henstridge, (Thu Oct 26, 1:52 am)
Re: VCS comparison table, Junio C Hamano, (Thu Oct 26, 2:33 am)
Re: VCS comparison table, Andreas Ericsson, (Thu Oct 26, 2:50 am)
Re: VCS comparison table, James Henstridge, (Thu Oct 26, 2:57 am)
Re: VCS comparison table, Jeff King, (Thu Oct 26, 3:10 am)
Re: VCS comparison table, Andreas Ericsson, (Thu Oct 26, 3:13 am)
Re: VCS comparison table, zindar, (Thu Oct 26, 3:45 am)
Re: VCS comparison table, Vincent Ladeuil, (Thu Oct 26, 3:52 am)
Re: VCS comparison table, Jeff King, (Thu Oct 26, 4:13 am)
Re: VCS comparison table, Jeff King, (Thu Oct 26, 4:15 am)
Re: VCS comparison table, Andreas Ericsson, (Thu Oct 26, 4:15 am)
Re: VCS comparison table, Andreas Ericsson, (Thu Oct 26, 4:25 am)
Re: VCS comparison table, Matthew D. Fuller, (Thu Oct 26, 5:12 am)
Re: VCS comparison table, Aaron Bentley, (Thu Oct 26, 6:47 am)
Re: VCS comparison table, Linus Torvalds, (Thu Oct 26, 8:05 am)
Re: VCS comparison table, Vincent Ladeuil, (Thu Oct 26, 9:04 am)
Re: VCS comparison table, Linus Torvalds, (Thu Oct 26, 9:21 am)
Re: VCS comparison table, David Lang, (Thu Oct 26, 9:30 am)
Re: VCS comparison table, Nicolas Pitre, (Thu Oct 26, 10:03 am)
Re: VCS comparison table, David Lang, (Thu Oct 26, 10:04 am)
Re: VCS comparison table, Linus Torvalds, (Thu Oct 26, 10:16 am)
Re: VCS comparison table, Nicolas Pitre, (Thu Oct 26, 10:24 am)
Re: VCS comparison table, Jan Hudec, (Mon Oct 30, 2:46 pm)
git and bzr, Joseph Wakeling, (Mon Nov 27, 5:01 pm)
Re: git and bzr, Sean, (Mon Nov 27, 5:40 pm)
Re: git and bzr, Linus Torvalds, (Mon Nov 27, 7:57 pm)
Re: git and bzr, zindar, (Tue Nov 28, 5:10 am)
Re: git and bzr, Joseph Wakeling, (Tue Nov 28, 7:23 pm)
Re: git and bzr, Linus Torvalds, (Tue Nov 28, 8:51 pm)
git blame [was: git and bzr], Joseph Wakeling, (Wed Nov 29, 5:17 am)
Re: git blame [was: git and bzr], Linus Torvalds, (Wed Nov 29, 9:39 am)
Re: git and bzr, Nicholas Allen, (Thu Nov 30, 5:36 am)
Re: git and bzr, Johannes Schindelin, (Thu Nov 30, 5:47 am)
Re: git and bzr, Linus Torvalds, (Thu Nov 30, 9:45 am)
Re: git blame [was: git and bzr], Joseph Wakeling, (Thu Nov 30, 11:24 am)
Re: git blame [was: git and bzr], Linus Torvalds, (Thu Nov 30, 11:44 am)
Re: git blame [was: git and bzr], Carl Worth, (Thu Nov 30, 12:55 pm)
Re: git blame [was: git and bzr], Johannes Schindelin, (Thu Nov 30, 3:17 pm)
Re: git blame [was: git and bzr], J. Bruce Fields, (Thu Nov 30, 3:24 pm)
Re: git blame, Junio C Hamano, (Thu Nov 30, 3:38 pm)
Re: git blame, Johannes Schindelin, (Thu Nov 30, 3:53 pm)