From mboxrd@z Thu Jan 1 00:00:00 1970 From: Avery Pennarun Subject: Re: [PATCH/RFC] gitk: refresh index before checking for local changes Date: Wed, 7 Apr 2010 12:48:29 -0400 Message-ID: References: <20100406233601.GA27533@progeny.tock> <20100407004353.GA11346@progeny.tock> <4BBBEC43.5000100@gmail.com> <7vfx37g6f6.fsf@alter.siamese.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Cc: gitzilla@gmail.com, Jonathan Nieder , Alexander Gladysh , git@vger.kernel.org To: Junio C Hamano X-From: git-owner@vger.kernel.org Wed Apr 07 18:49:00 2010 Return-path: Envelope-to: gcvg-git-2@lo.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1NzYR1-0006hU-Fa for gcvg-git-2@lo.gmane.org; Wed, 07 Apr 2010 18:48:59 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758062Ab0DGQsy (ORCPT ); Wed, 7 Apr 2010 12:48:54 -0400 Received: from mail-yw0-f172.google.com ([209.85.211.172]:36673 "EHLO mail-yw0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756399Ab0DGQsx (ORCPT ); Wed, 7 Apr 2010 12:48:53 -0400 Received: by ywh2 with SMTP id 2so658554ywh.33 for ; Wed, 07 Apr 2010 09:48:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:received:message-id:subject:to:cc:content-type; bh=3iELcRrgbMUiiTQjqn+gIztqGz3xBsbZF7mtndH4LuY=; b=tdPhXbBiXEACXxwDG6Dv8+36b1YMu98wziFXF04gWPlQPmLyu1P/aWngh2QmsCSbiE 7rEXN1o8sdcdIsE5NIvOLrFdkuXQFZGYubP2TwYimAoAkS9qHHDl/M5+3pBxYgmNGa3f zeL45/LU3sftapJecOmvnf8U9zNspnH5lwvLs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=Vu185NcA1Hfqn/lg+WtSe1/NG+m2ZOdRe8znndF3+3vgMRY9H0IiHVySRt81/Z1fIh unbzBugV9aYjsuBn/hdqokMCccngTUlpvizX5jE76et8dpQY64SKuumpZ5RtZGJE8QPL +UV5PWEtYtNoxGEOkLG/sQ1T+xotdGKlUfbrA= Received: by 10.150.150.20 with HTTP; Wed, 7 Apr 2010 09:48:29 -0700 (PDT) In-Reply-To: <7vfx37g6f6.fsf@alter.siamese.dyndns.org> Received: by 10.150.254.13 with SMTP id b13mr4998042ybi.152.1270658930698; Wed, 07 Apr 2010 09:48:50 -0700 (PDT) Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: On Wed, Apr 7, 2010 at 1:47 AM, Junio C Hamano wrote: > A Large Angry SCM writes: >> NAK - gitk should not modify a repository and/or working dir unless >> _explicitly_ prompted to by the user. > > I used to think that way, until I realized that gitk has operations like > "Tag this commit" that does write into the repository. Also 'git status' does the same "modify a repository" operation as we're currently discussing, so calling it modification is a bit of an exaggeration. Avery