git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jeff King <peff@peff.net>
To: Stephen Bash <bash@genarts.com>
Cc: git discussion list <git@vger.kernel.org>
Subject: Re: Passing commit IDs to git-archive
Date: Mon, 12 Mar 2012 07:47:42 -0400	[thread overview]
Message-ID: <20120312114742.GC12921@sigill.intra.peff.net> (raw)
In-Reply-To: <8fb14091-99dc-4383-9cab-5bf508e0a554@mail>

On Fri, Mar 09, 2012 at 05:14:05PM -0500, Stephen Bash wrote:

> on Mac OS 10.6.8 (obviously this is local testing, the goal is to use
> ssh remotely).  After parsing the error "no such ref" I attempted the
> same operation using master as the tree-ish and archive worked as
> expected (either specifying the path separately or using the colon
> syntax to reference the tree directly).  Is there a reason git-archive
> requires a named ref rather than just a commit (or tree) ID?

Yes; generally git repositories do not allow clients to access arbitrary
sha1s. Instead, they require that the requested objects be accessible by
a ref.

git-archive was not properly enforcing this, and was changed recently to
allow only refs by name, as well as sub-trees of refs (e.g.,
HEAD:subdir/). That means we do disallow an arbitrary commit or tree
sha1, even if it is reachable from the advertised refs.

> would it be difficult to patch git-upload-archive to use the IDs?  I
> could use tags for the ref, but in my case would result in almost
> every commit being a tag which seems wasteful.

Doing it right is a bit expensive, because in the general case (somebody
requested a tree sha1), we would need to traverse every tree of every
commit to see if it is reachable.

We could potentially implement a more restricted set of rules, allowing
"<commit>:<subdir>" and checking that <commit> is reachable.  That would
disallow an arbitrary tree sha1, but I suspect it would cover the common
use case (i.e., you want to get the tree, or even a subtree, of a
particular revision).

-Peff

  parent reply	other threads:[~2012-03-12 11:47 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <8c6d921d-9e8e-4caf-bc04-b1d2cfdd294f@mail>
2012-03-09 22:14 ` Passing commit IDs to git-archive Stephen Bash
2012-03-09 22:34   ` Junio C Hamano
2012-03-10  6:40   ` René Scharfe
2012-03-12 11:47   ` Jeff King [this message]
2012-03-12 13:24     ` Stephen Bash

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120312114742.GC12921@sigill.intra.peff.net \
    --to=peff@peff.net \
    --cc=bash@genarts.com \
    --cc=git@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).