login
Header Space

 
 

Re: VCS comparison table

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Aaron Bentley <aaron.bentley@...>
Cc: Jakub Narebski <jnareb@...>, <bazaar-ng@...>, <git@...>
Date: Tuesday, October 17, 2006 - 11:03 am

On Tue, 17 Oct 2006, Aaron Bentley wrote:

Ehh. Exactly like the bzr numbers? You have to have access to the original 
repo to name it.

So your point is?

If you do

	git log v2.6.17

in a kernel repository, you'll see exactly what I see - because you'll 
have gotten the tags, aka the "easy revision names".

Now, I'm obviously biased, but the thing is, git really does do this 
right. No meaningless numbers. You give _meaningful_ revision names, and 
they can be extremely powerful.

And no, it's not just tags or the raw SHA1 numbers. You can do 
relationships like

	git log HEAD~5..

which means "show the log for everything since five parents ago" (which is 
_not_ the same as "show the last five revisions", because one of them may 
have been a merge, and brought in a lot more of new commits).

Or, you can say

	git diff mybranch@{2.days.ago}..nextbranch

which says exactly what you'd read it as: show the diff between what 
"mybranch" looked like 2 days ago and what "nextbranch" looks like right 
now.

Or, since the namespace is the same for commit history _and_ for actual 
file contents, and since some commands don't need commits, you can decide 
to name not a revision, but a specific file or subdirectory in a revision, 
and do things like

	git -p grep -1 request_irq v2.6.17~2:drivers/char

where the "revision" is not a commit revision at all, it's a _tree_ 
revision, because we've looked up the revision for "v2.6.17~2" (which 
means "the grandparent of the tag 2.6.17"), and then within that commit we 
looked up the tree "drivers/char", and then we grepped (recursively) for 
the string "request_irq" within that subtree (with one line of context), 
and then we paginated the output through "less" (or whatever your pager is 
set to).

In other words, yes, the above does _exactly_ what you'd expect it to do.

The fact is, nobody ever uses the SHA1 names directly in their normal 
work. You'd use the branch names, tag-names, or some relationship operator 
like "this long ago" or "the parent of" or similar).

The only time you use actual SHA1 names is when you tell somebody _else_ 
something. Or when you use "gitk" to look something up, and select a 
commit, and then paste that commit name into "git show" (which is 
obviously telling "somebody else" - it's communicating between two 
programs).

There's simply no reason to ever use the SHA1 names directly normally. But 
they are there, and they are the _real_ revision numbers, and they 
actually have real meaning between different repositories.

So that "git grep" example above is actually 100% equivalent to

	git -p grep -1 request_irq 3ff4e205e1

but why would I ever write that? That's just insane. But in case you care, 
the way I got that "3ff4e205e1" number, it was just by doing

	git rev-parse v2.6.17~2:drivers/char

and cutting-and-pasting the first ten hex-digits to  make sure I had 
enough of a name to make it unique.

So the SHA1 names always exist, and they are what git _internally_ uses, 
but you'd normally not use them that much in your daily life. 

They are great for explaining things, though. For example, when somebody 
reports a bug, and has used "git bisect" to figure out where the bug 
started happening, that's when the "real name" matters - since we normally 
didn't tag that commit as being buggy when we created it ;)

So that's when you'd say: "I bisected the problem, and it started 
happening in commit 0123456789abcdef". And now everybody with a git 
repository of the kernel can just look it up locally by 
cutting-and-pasting that one number.


Actually, git does something even better.

Git allows the repository to be split up.

You can get a git repository on a CD or DVD, and do

	git clone -l -s /mount/cdrom myrepo

and that "-s" means that the new "myrepo" actually is linked to the 
original CDROM repository, and you can now _commit_ stuff and make changes 
in myrepo, even though all the old history is on that CD-ROM. It won't add 
any unnecessary stuff at all to the new repo.

Or, you could do the "totally naked" checkout, so that the whole 
repository is somewhere else (if that "somewhere else" is the CD-ROM, you 
obviously cannot change anything ;)

Or you can have <n> different repositories that are all related, and all 
contain just the part that _they_ care about.

		Linus
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

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