Ramsay Jones <ramsay@xxxxxxxxxxxxxxxxxxxx> writes: >> "via the refdb" -> "via the refs API" or something here and on the >> title, and possibly elsewhere in the proposed log messages and >> in-code comments in patches in this series, as I've never seen a >> word "refdb" used in the context of this project. >> >> I agree it is bad manners to be intimate with the implementation >> details of the how files-backend stores HEAD and ORIG_HEAD. > > Hmm, I have never thought of the 'pseudo-refs' as being a part of > the 'reference database' at all. ;) Me neither, but once you start thinking about getting rid of the need to use one-file-per-ref filesystem, being able to maintain all refs, including the pseudo refs, in one r/w store backend, becomes a very tempting goal. From that point of view, I do not have problem with the idea to move _all_ pseudorefs to reftable. But I do have reservations on what Patrick, and the code he inherited from Han-Wen, calls "special refs" (which is not defined in the glossary at all), namely, refs.c:is_special_ref() and its callers. Neither am I very much sympathetic to the hardcoded list of "known" pseudorefs, refs.c:pseudorefs[]. I cannot quite see why we need anything more than any string that passes refs.c:is_pseudoref_syntax() is a pseudoref, is per worktree, and ref backends can store them like any other refs. Many of them have specific meaning and uses (e.g. HEAD is "the current branch"). Enumerating existing pseudorefs in files backend may need to opendir(".git") + readdir() filtered with is_pseudoref_syntax(), and a corresponding implementation for reftable backend may be much simpler (because there won't be "other cruft" stored there, unlike files backend that needs to worry about files that are not refs, like ".git/config" file. > We seem to have pseudo-refs, special pseudo-refs and (recently) > ex-pseudo-refs! > > This patch (well series) changes the 'status' of some, *but not all*, > pseudo-refs; some graduate to full-blown refs stored as part of *a* > reference database (ie reftable). Yeah, that leaves bad taste in my mouth, too.