On Sun, Sep 25, 2011 at 10:07:24PM +0100, tactical wrote: [...] > > I think you can use detached HEAD for that, at least when working on > > one issue at a time (you have to name branch when switching to some > > other work). > > But in Mercurial I can switch between anonymous branches as much as I like > without anything ever being deleted. > > >> From what I read, detached heads are subject to garbage collection. > > > > No, HEAD is protected against garbage collecting. To be sure you > > should name a branch when switching branches, though reflog would > > protect you for 30 days (by default) even if you don't do that. > > So Git doesn't really support anonymous branching as part of a normal > workflow. I perceive a certain logical fallacy here: you cannot switch between anything anonymous because to switch, you should somehow identify something to switch to--a name in whatever sense we put into this word. As I understand, by switching between branches in Mercurial you mean switching between directories with clones; if so, you had had to name those directories when they were created. As to branches, they do have names in Git but they are very loosely coupled with their names: tag a tip of some branch (to still have a handle on that tip commit) then delete that branch--there will be no traces of that branch's name left, the branch's name is not encoded in its history in any way. The branch names is just a way to not mess with SHA-1 names of commits (and to have references to those commits to keep them out of consideration for garbage collection). Hence the idea to demand support for anonymous branches in Git's model is just unfounded. -- 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