>>> Ulrich Windl schrieb am 05.07.2021 um 09:10 in Nachricht <60E2B04B.461 : 161 : 60728>: >>>> Junio C Hamano <gitster@xxxxxxxxx> schrieb am 02.07.2021 um 20:15 in Nachricht > <xmqqczs0popg.fsf@gitster.g>: > > "Ulrich Windl" <Ulrich.Windl@xxxxxx‑regensburg.de> writes: > > > >> I was wondering whether git fsck should be able to cleanup > >> orphaned branches ("HEAD points to an unborn branch") as described > >> in https://stackoverflow.com/q/68226081/6607497 It seems I can fix > >> it be editing files in the repository, but I feed that's not the > >> way it should be. > > > > HEAD pointing at an unborn branch is not even a corruption, isn't > > it? > > > > $ rm ‑rf trash && git init trash > > > > would point HEAD at an unborn one, ready to be used. > > > OK, so maybe I was just confused by "fsck". At it seems after committing, > fsck no longer complains. Sorry, I didn't think (still pre-coffeine time): The problem is gone in the workspace so far, not in the repository, and I think the problem never was present in the workspace. Also "git branch" dispalys three branches in addition to "master", while the "branches" directory of the repository is empty. So when I try to delete a branch displayed by "git branch", I get: fatal: Couldn't look up commit object for HEAD It seems the delete command reads those refs from HEAD: ref: refs/heads/name_of_branch_to_be_deleted but in refs/heads/ that name does not exist Last command before error message is: lstat("./objects/00/00000000000000000000000000000000000000", 0x7fff76d9a180) = -1 ENOENT (No such file or directory) write(2, "fatal: Couldn't look up commit o"..., 47fatal: Couldn't look up commit object for HEAD ) = 47 > As "EXTRACTED DIAGNOSTICS" In man git-fsck (Git 2.26.2) does not mention > "unborn" (and as it's not a common IT phrase), one could probably explain > what it means. > > Regards, > Ulrich > > > >