On Mon, Mar 31, 2025 at 10:15:00PM +0200, MegaBrutal wrote: > > > I'm new to the list, just thought it's the best place to talk about > > > Git. I'm running a public read-only git server with git-daemon. I've > > > recently noticed that my repos can't be cloned and found that > > > particular CVE which made git to verify the owners of the git repos. > > > > > > fatal: detected dubious ownership in repository at '/srv/git/mgsautils.git' > > > > > > The feasible solution is to declare the directory safe in .gitconfig. > > > > You can set global values in /etc/gitconfig, e.g.: > > > > [safe] > > directory = /srv/git/* > > Thanks! While it is much more convenient to set it in one global > /etc/gitconfig than individual home directories, I encountered the > following problems: > > 1. It doesn't do anything with the other error I get, when the > problematic directory is '.'. I still keep getting that error message. > 2. Git daemon doesn't seem to resolve the '*' wildcard, i.e. with the > wildcard I get the original message back which complains about > '/srv/git/mgsautils.git', despite it should be covered by > '/srv/git/*'. When I supply the full path, however, the error message > is still about '.'. > > I even performed a whole Ubuntu release upgrade to get a new version > of Git, but 2.43.0 acts the same. Seems like git-daemon is more > stricts than plain git – what might be the problem? 2.43.0 is not very new. I believe in that version it only supported setting that to '*' as a wildcard, so the following should work for you, hopefully: [safe] directory = * -K