Hi, I'm currently trying to fully understand how exactly reflogs and reflog entries are supposed to be deleted in the reftable backend. For ref records it's easy enough, as explained in the technical documentation for reftables that is part of our tree: > Deletion of any reference can be explicitly stored by setting the type > to 0x0 and omitting the value field of the ref_record. This serves as > a tombstone, overriding any assertions about the existence of the > reference from earlier files in the stack. So you simply create a new ref record with type 0x0 and are done. For log records it seems to be a bit of a different story though. Again, quoting the technical documentation: > The log_type = 0x0 is mostly useful for git stash drop, removing an > entry from the reflog of refs/stash in a transaction file (below), > without needing to rewrite larger files. Readers reading a stack of > reflogs must treat this as a deletion. To me it seems like deletions in this case only delete a particular log entry instead of the complete log for a particular reference. And some older discussion [1] seems to confirm my hunch that a complete reflog is deleted not with `log_type = 0x0`, but instead by writing the null object ID as new ID. So: a single entry is deleted with `log_type = 0x0`, the complete reflog entry is deleted with the null object ID as new ID. Fair enough, even though the documentation could be updated to make this easier to understand. I'll happily do so if my understanding is correct here. In any case though, this proposed behaviour is not sufficient to cover all cases that the files-based reflog supports. The following case may be weird, but we do have tests for it in t1400: ``` $ git init repo Initialized empty Git repository in /tmp/repo/.git/ $ cd repo/ $ git commit --allow-empty --message initial-commit [main (root-commit) 9f10b3f] initial-commit # Everything looks as expected up to this point. $ git reflog show HEAD 9f10b3f (HEAD -> main) HEAD@{0}: commit (initial): initial-commit # This behaviour is a bit more on the weird side. We delete the # referee, and that causes the files backend to claim that the reflog # for HEAD is gone, as well. The reflog still exists though, as # demonstrated in the next command. $ git update-ref -m delete-main -d refs/heads/main $ git reflog show HEAD fatal: ambiguous argument 'HEAD': unknown revision or path not in the working tree. Use '--' to separate paths from revisions, like this: 'git [...] -- [...]' # We now re-create the referee, which revives the reflog _including_ # the old entry. $ git update-ref -m recreate-main refs/heads/main 9f10b3f $ git reflog show HEAD 9f10b3f (HEAD -> main) HEAD@{0}: recreate-main 9f10b3f (HEAD -> main) HEAD@{2}: commit (initial): initial-commit $ cat .git/logs/HEAD 0000000000000000000000000000000000000000 9f10b3f9b20962690fdeff76cd592722fbf57deb Patrick Steinhardt 1700573003 +0100 commit (initial): initial-commit 9f10b3f9b20962690fdeff76cd592722fbf57deb 0000000000000000000000000000000000000000 Patrick Steinhardt 1700573060 +0100 delete-main 0000000000000000000000000000000000000000 9f10b3f9b20962690fdeff76cd592722fbf57deb Patrick Steinhardt 1700573078 +0100 recreate-main ``` It kind of feels like the second step in the files backend where the reflog is claimed to not exist is buggy -- I'd have expected to still see the reflog, as the HEAD reference exists quite alright and has never stopped to exist. And in the third step, I'd have expected to see three reflog entries, including the deletion that is indeed still present in the on-disk logfile. But with the reftable backend the problem becomes worse: we cannot even represent the fact that the reflog still exists, but that the deletion of the referee has caused the HEAD to point to the null OID, because the null OID indicates complete deletion of the reflog. Consequentially, if we wrote the null OID, we'd only be able to see the last log entry here. It may totally be that I'm missing something obvious here. But if not, it leaves us with a couple of options for how to fix it: 1. Disregard this edge case and accept that the reftable backend does not do exactly the same thing as the files backend in very specific situations like this. 2. Change the reftable format so that it can discern these cases, e.g. by indicating deletion via a new log type. 3. Change the files backend to adapt. None of these alternatives feel particularly great to me. In my opinion (2) is likely the best option, but would require us to change the format format that's already in use by Google in the context of multiple projects. So I'm not quite sure how thrilled you folks at Google and other users of the reftable library are with this prospect. Anyway, happy to hear about alternative takes or corrections. Patrick [1]: