From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff King Subject: Re: [RFC/PATCH] verify-tag: add --check-name flag Date: Tue, 7 Jun 2016 18:07:44 -0400 Message-ID: <20160607220743.GA21043@sigill.intra.peff.net> References: <20160607195608.16643-1-santiago@nyu.edu> <20160607211707.GA7981@sigill.intra.peff.net> <20160607215536.GA20768@sigill.intra.peff.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Cc: santiago@nyu.edu, git@vger.kernel.org, Eric Sunshine , Colin Walters To: Junio C Hamano X-From: git-owner@vger.kernel.org Wed Jun 08 00:11:50 2016 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1bAPAA-0004RY-OZ for gcvg-git-2@plane.gmane.org; Wed, 08 Jun 2016 00:07:55 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755440AbcFGWHr (ORCPT ); Tue, 7 Jun 2016 18:07:47 -0400 Received: from cloud.peff.net ([50.56.180.127]:50862 "HELO cloud.peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1754641AbcFGWHr (ORCPT ); Tue, 7 Jun 2016 18:07:47 -0400 Received: (qmail 10795 invoked by uid 102); 7 Jun 2016 22:07:46 -0000 Received: from Unknown (HELO peff.net) (10.0.1.2) by cloud.peff.net (qpsmtpd/0.84) with SMTP; Tue, 07 Jun 2016 18:07:46 -0400 Received: (qmail 2308 invoked by uid 107); 7 Jun 2016 22:07:55 -0000 Received: from sigill.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.7) by peff.net (qpsmtpd/0.84) with SMTP; Tue, 07 Jun 2016 18:07:55 -0400 Received: by sigill.intra.peff.net (sSMTP sendmail emulation); Tue, 07 Jun 2016 18:07:44 -0400 Content-Disposition: inline In-Reply-To: Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: On Tue, Jun 07, 2016 at 03:05:50PM -0700, Junio C Hamano wrote: > Jeff King writes: > > > On Tue, Jun 07, 2016 at 02:50:23PM -0700, Junio C Hamano wrote: > > > >> >> Or it could even do this: > >> >> > >> >> tag="$1" > >> >> if ! git tag -v "$tag" > >> >> if ! git tag -v "$tag" > >> >> then > >> >> echo >&2 "Bad tag." > >> >> exit 1 > >> >> fi > >> >> + tag=$(git tag --show-tagname $tag) > >> >> make dest=/usr/local/$package/$tag install > >> > > >> > It is racy. That probably doesn't matter for most callers, but it would > >> > be nice to be able to get a custom format out of the "-v" invocation. > >> > >> Heh, you can do > >> > >> - tag="$1" > >> + tag=$(git rev-parse --verify "$1") > >> > >> upfront and it no longer is racy, no? > > > > Yes, though that doesn't quite work today. The formatted output comes > > from "tag -l", which wants a refname. > > Puzzled. I didn't even use --format=%(tagname) in the above. No, but you used --show-tagname, which does not exist today (and which IMHO should be implemented as --format). Would --show-tagname take either a tagname _or_ a sha1? I assume it would not be calling get_sha1(), as having it find refs/heads/$tag would be silly. -Peff