From: Jeff King <peff@peff.net>
To: git@vger.kernel.org
Subject: Re: Retrieving a file at a before a specified commit
Date: Wed, 29 May 2013 22:34:46 -0400 [thread overview]
Message-ID: <20130530023446.GA19860@sigill.intra.peff.net> (raw)
In-Reply-To: <20130530104932.d7ba4bfb426044ab9653057e@mega-nerd.com>
On Thu, May 30, 2013 at 10:49:32AM +1000, Erik de Castro Lopo wrote:
> Look at this commit:
>
> git log --name-status f51ac745a6d4087cc4d77a3cee01db0412955c79
>
> and notice that one of the files modified is "pib/chkpib2.7", so lets
> look at the parent version of that file:
>
> git show f51ac745a6d4087cc4d77a3cee01db0412955c79^:pib/chkpib2.7
>
> which produces no output and exits with 0 status.
>
> However looking at the diff for commit f51ac745a suggests that while
> the file pib/chkpib2.7 may have existed before that commit, it must
> have been empty (ie zero length).
>
> Does this explanation make sense?
Yes, that is what I would expect git to do in such a situation. You can
inspect it further, too:
$ git rev-parse f51ac745^:pib/chkpib2.7
e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
That's the sha1 of the blob containing the content. You can investigate
information about that object like this:
$ git cat-file -t e69de29b
blob
$ git cat-file -s e69de29b
0
$ git cat-file blob e69de29b
Of course since its size is 0, the last one is not that interesting. :)
You could also just look at the tree, which gives similar information:
$ git ls-tree -lr f51ac745^ | grep pib/chkpib2.7
100644 blob e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 0 pib/chkpib2.7
Hope that helps.
-Peff
next prev parent reply other threads:[~2013-05-30 2:34 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-29 6:47 Retrieving a file at a before a specified commit Erik de Castro Lopo
2013-05-29 7:58 ` Jeff King
2013-05-30 0:49 ` Erik de Castro Lopo
2013-05-30 0:59 ` Erik de Castro Lopo
2013-05-30 2:27 ` Junio C Hamano
2013-05-30 3:18 ` Erik de Castro Lopo
2013-05-30 2:34 ` Jeff King [this message]
2013-05-30 3:19 ` Erik de Castro Lopo
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=20130530023446.GA19860@sigill.intra.peff.net \
--to=peff@peff.net \
--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).