From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Marco Costalba" Subject: Re: That improved git-gui blame viewer.. Date: Wed, 13 Jun 2007 14:44:39 +0200 Message-ID: References: <20070611064203.GG6073@spearce.org> <7vveduqxxr.fsf@assigned-by-dhcp.pobox.com> <7vbqflll55.fsf@assigned-by-dhcp.pobox.com> <20070612135303.GT6073@spearce.org> <7v645thto7.fsf@assigned-by-dhcp.pobox.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: "Shawn O. Pearce" , "Linus Torvalds" , "Git Mailing List" To: "Junio C Hamano" X-From: git-owner@vger.kernel.org Wed Jun 13 14:45:00 2007 Return-path: Envelope-to: gcvg-git@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1HySDb-00068y-VQ for gcvg-git@gmane.org; Wed, 13 Jun 2007 14:45:00 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757866AbXFMMol (ORCPT ); Wed, 13 Jun 2007 08:44:41 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757625AbXFMMol (ORCPT ); Wed, 13 Jun 2007 08:44:41 -0400 Received: from nz-out-0506.google.com ([64.233.162.238]:27129 "EHLO nz-out-0506.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757863AbXFMMok (ORCPT ); Wed, 13 Jun 2007 08:44:40 -0400 Received: by nz-out-0506.google.com with SMTP id n1so199530nzf for ; Wed, 13 Jun 2007 05:44:39 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=c09AFoSH/1UH9Byq/R7UEpdkpmFyMP3rzN/bQ+BCdFUFZyVDlGvwSjQ88FOtYZUuJ2zIQwmqPcAJKMzftq98/XA8OcxRRVMaBpZhIJwuntLiwniHCeC8f0rlK5ZqZatoaO/w/kfu68kUJIDUXThTupTkW5EyiOlEsIUEILrvRZ4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=qVGLOLbN7zylEOtJ+ZsJmnJ25Gr/CEJRsds4xsE6k+ro2ArfJU5nQkEWNBpKR3bYapx76ngv6oq+a3N/sNrFC1zVDkf9r5+k4Ad8rv6zXu5vhpUR+ZDF/ObogR2IqbrDM6sG6wiIzCHlXTgeX+moWZhLxSzjGlZmCz7Y9jPleCk= Received: by 10.114.15.1 with SMTP id 1mr637310wao.1181738679098; Wed, 13 Jun 2007 05:44:39 -0700 (PDT) Received: by 10.114.56.6 with HTTP; Wed, 13 Jun 2007 05:44:39 -0700 (PDT) In-Reply-To: Content-Disposition: inline Sender: git-owner@vger.kernel.org Precedence: bulk X-Mailing-List: git@vger.kernel.org Archived-At: On 6/13/07, Marco Costalba wrote: > > Some weeks ago I've started to experiment with git-log as a > replacement for git-rev-list (as suggested by Linus in a thread). > > I found some problems and so I stopped Now I remember why I've quit with git-log: due to a big performance regression under Windows. I've made some tests on a git tree copied under Windows: running: git rev-list --header --parents --boundary HEAD > tmp.txt 1,38s 1,37s 1,39s then running: git log --pretty=raw -z --parents --boundary HEAD > tmp.txt 8,87s 8,87s 8,86s 8,86s So at the end git-log seems 6,4 times slower the git-rev-list ! This would mean the end of the story for me. Marco