From: Linus Torvalds <torvalds@osdl.org>
To: Jakub Narebski <jnareb@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: [WISH] Store also tag dereferences in packed-refs
Date: Sun, 19 Nov 2006 15:36:36 -0800 (PST) [thread overview]
Message-ID: <Pine.LNX.4.64.0611191527270.3692@woody.osdl.org> (raw)
In-Reply-To: <ejqhvi$9kc$1@sea.gmane.org>
On Sun, 19 Nov 2006, Jakub Narebski wrote:
>
> So the only reason against this format (IMHO more reasonable, more readable
> and more readable, and even easy extendable to the whole chain of derefs)
> is code in the wild?
>
> By the way, do we copy packed refs literaly when fetching or cloning?
The packed refs format is _purely_ a local format. So in that sense, we
can change it any way we want, and nobody really cares.
HOWEVER, even on a local machine, we generally want to be able to upgrade
and downgrade git versions without having to worry about things like this,
and having to convert one format to another. So using a format that "just
works" with any version of git that understands packed refs is _wildly_
more preferable over changing the format.
Btw, the simplest and best format is probably to make the new extension
look something like
8ba130df4b67fa40878ccf80d54615132d24bc68 refs/tags/v2.6.17
^427abfa28afedffadfca9dd8b067eb6d36bac53f
d882e0c80e6e3c60640492b83395e6fbbae04276 refs/tags/v2.6.17-rc1
^6246b6128bbe34d0752f119cf7c5111c85fe481d
which is basically almost as dense as having a space on the same line, and
will also trigger the old "that's not a valid line, just ignore it"
reaction from older versions.
So the parsing rules for that would simply be:
- if you see a line that starts with a "^<sha1>", then that is the
"unpeeling" of the previous packed entry (which in turn might have been
an unpeeling itself)
So if you were to have tags pointing to tags, you migt have
<sha1> refs/tags/tagname
^<sha1-unpeeled>
^<sha1-unpeeled-of-unpeeled>
...
<sha1> refs/tags/othertag
In addition, we'd need a line at the top of the file that says "this has
unpeeled information", because otherwise we have no way to distinguish
between the case of "no actual tag objects" and "old-fashioned ref-pack
file without any unpeeling info" - since they'd look identical.
So I'd suggest adding - at the very top of the ref-pack file - a line line
# Ref-pack version 2
which will be ignored by the current ref-pack reader (again, because it's
not a valid ref line), but we can use it in the future to specify further
extensions if we want to.
Now somebody would just need to implement that ;)
next prev parent reply other threads:[~2006-11-19 23:36 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-11-18 9:15 [WISH] Store also tag dereferences in packed-refs Marco Costalba
2006-11-18 18:38 ` Junio C Hamano
2006-11-18 18:43 ` Petr Baudis
2006-11-18 18:47 ` Marco Costalba
2006-11-18 19:04 ` Junio C Hamano
2006-11-19 0:28 ` Marco Costalba
2006-11-19 1:11 ` Linus Torvalds
2006-11-19 1:40 ` Junio C Hamano
2006-11-19 1:45 ` Junio C Hamano
2006-11-19 1:59 ` Linus Torvalds
2006-11-19 9:40 ` Marco Costalba
2006-11-19 18:05 ` Linus Torvalds
2006-11-19 19:07 ` Marco Costalba
2006-11-19 20:09 ` Marco Costalba
2006-11-19 20:36 ` Linus Torvalds
2006-11-19 20:44 ` Linus Torvalds
2006-11-19 21:01 ` Junio C Hamano
2006-11-19 21:14 ` Linus Torvalds
2006-11-19 21:24 ` Jakub Narebski
2006-11-19 23:36 ` Linus Torvalds [this message]
2006-11-20 2:35 ` Junio C Hamano
2006-11-20 9:40 ` Jakub Narebski
2006-11-20 12:56 ` Marco Costalba
2006-11-20 16:29 ` Linus Torvalds
2006-11-20 19:32 ` Junio C Hamano
2006-11-19 22:25 ` Marco Costalba
2006-11-19 23:26 ` Linus Torvalds
2006-11-19 20:18 ` Linus Torvalds
[not found] ` <200611201154.08732.jnareb@gmail.com>
[not found] ` <7vu00u2wln.fsf@assigned-by-dhcp.cox.net>
2006-11-20 11:33 ` Jakub Narebski
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=Pine.LNX.4.64.0611191527270.3692@woody.osdl.org \
--to=torvalds@osdl.org \
--cc=git@vger.kernel.org \
--cc=jnareb@gmail.com \
/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).