On Tuesday 22 April 2008, Michael Dressel wrote: > On Friday 18 April 2008, Jakub Narebski wrote: > > Let me sum up here proposals where to put branch description: > > what's the opinion of having a new branch object? Actually the tag > object probably already does the job? This would spoil the elegant > light weight current branch references. But tags are not that heavy. > > In this approach the tags would not reference commits but tags. And > tags have annotation. The difference to the normal tags would be that > these tags are referenced from refs/heads/<branch> instead of > refs/tags. > > I have no clue how involved this change would become and if the > benefit would justify the effort. I guess using proper objects for > branches would only be justified if additional advantages could be > achieved. > > Cheers, > Michael Nice idea, but it won't work, simply because branches are moving targets, whereas tags are not. To illustrate, here's how things are structured between the refs (tags/branches) and the object DB: refs/tags/lighweight -------------------------> [commit object] refs/tags/annotated -----> [tag object] -----> [commit object] refs/heads/branchname -------------------------> [commit object] The annotated tag ref holds the SHA1 of the tag object which in turn holds the SHA1 of the commit object, while the two other ref types point directly at a commit object. The tag object works on the assumption that the commit object pointed to by the tag never changes. That's after all the whole point of a tag. A branch - on the other hand - is _supposed_ to change. It changes by adding a new commit on top of the current commit, and updating the branch ref to point to the new commit. If we kept the branch description in a tag object, and stuck this between the branch ref and the commit object, we would suddenly have to rewrite the tag object every time we added another commit on the branch. This would make commits much more expensive, not to mention that for every commit you would drop the tag object pointing to the previous commit, in effect generating one garbage object per commit. This is clearly not what we want. ...Johan -- Johan Herland, <johan@xxxxxxxxxxx> www.herland.net -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html