Hello,
I use bare shared repositories on Alpine Edge, which have been working
perfectly until I updated git recently (from 2.38.5-r0 to 2.45.2-r1).
My setup is a git user which owns all repositories (/home/git/*.git).
Each repository has a group, so the ownership is git:projectname. The
group has the same permissions as the user (-rw-rw----)
To give access to the repository, I have a user set up for the
developer, and then I add them to the group. Each repository was
initialized with 'git init --bare --shared'. In the config file,
'sharedrepository = 1' is set under [core].
My issue is that somewhere between 2.40.1-r0 and 2.43.4-r0 on the
server, I start getting the following error on the server with a user in
the group, and remotely (tried with client version 2.39.2 and 2.45.2)
through a user in the group:
| $ git pull
| fatal: detected dubious ownership in repository at '/home/git/project.git'
| To add an exception for this directory, call:
|
| git config --global --add safe.directory /home/git/project.git
| fatal: Could not read from remote repository.
|
| Please make sure you have the correct access rights
| and the repository exists.
When using git 2.40.1-r0 or below, it all works and I get this:
| $ git pull
| Already up to date.
Is there a breaking change I missed that I need to change my
configuration for?
Thank you,
Michael Lodispoto