On Mon, Feb 01, 2010 at 02:52:08PM -0800, Ron Garret wrote: > In article <87aavsu9b3.fsf@xxxxxxxxxxx>, Sergei Organov <osv@xxxxxxxxx> > wrote: > > > Junio C Hamano <gitster@xxxxxxxxx> writes: > > > Steve Diver <squelch2@xxxxxxxxxxxxxx> writes: > > > > [...] > > > > > If read carefully (some may argue that it does not need a very careful > > > reading to get it, though), this hints that "detached HEAD" state is a > > > substitute for using a temporary branch, but it may not be strong > > > enough. > > > > For my rather fresh eye it looks more like unnamed (anonymous?) branch > > than a temporary one. Doesn't detached HEAD behave exactly like a > > regular HEAD but pointing to the tip of an unnamed branch? > > I strongly concur with this. > > And as long as I'm weighing in, it would also help to prevent confusion > if it were made clear that this unnamed branch doesn't actually come > into existence unless and until you do a commit. That statement is not quite consistent with the Git model. A branch is a pointer. Detached HEAD is "unnamed" branch pointer (as in, you can refer to it by the default HEAD alias, but not by any other name). In this sense, the moment you create detached HEAD, you created the anonymous branch, and the moment you check out something else, it is gone in a wisp of smoke again. The act of committing does not come into the picture at all. Committing is the act of saving a commit to the database and *updating* the current branch pointer to point at it. However, it does not affect what branch pointer is the current one. It is important to realize that: * Branches refer to commits. * Commits do not refer to branches! That is, when you create a commit, it is not _tied_ to a particular branch. Thus, when you create a commit, you could not have created any branch, and creating a branch [pointer] is unrelated to creating any commits. -- Petr "Pasky" Baudis If you can't see the value in jet powered ants you should turn in your nerd card. -- Dunbal (464142) -- 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