Re: fatal: unable to read <hash>

From: Marc Branchaud <marcnarc_at_gmail.com>
Date: Mon, 31 Jul 2023 12:34:29 UTC
On 2023-07-30 21:21, Bjoern A. Zeeb wrote:
> 
> freebsd-src% find . \! -user bz
> freebsd-src% ls -l .git/objects/b9/cdc058e6eb1b3d8b5e29ad9b911d3da98f65a7
> ls: .git/objects/b9/cdc058e6eb1b3d8b5e29ad9b911d3da98f65a7: No such file 
> or directory

So it seems like the cdc058e6eb1b3d8b5e29ad9b911d3da98f65a7 object is 
really missing and not just inaccessible.  (Note that Git also stores 
objects in .pack files -- see "git help pack-objects" -- but I'm 
figuring those files are also accessible.)

To try to figure out what is referring to object 
cdc058e6eb1b3d8b5e29ad9b911d3da98f65a7, try running
	git fsck --name-objects --connectivity-only --no-dangling

		M.