Gitea wants to modify files even if they are present and with the content gitea wants to put in.
Therefore, Gitea breaks on read-only filesystems (like an hardened docker container.)
My problem is simple.
This method wants to modify a .gitconfig file:
|
func Init(ctx context.Context) error { |
It runs even if the .gitconfig file exists with the correct content.
Is it possible to stop that behaviour ?
Thanks.
Gitea wants to modify files even if they are present and with the content gitea wants to put in.
Therefore, Gitea breaks on read-only filesystems (like an hardened docker container.)
My problem is simple.
This method wants to modify a
.gitconfigfile:gitea/modules/git/git.go
Line 109 in 9a2e47b
It runs even if the
.gitconfigfile exists with the correct content.Is it possible to stop that behaviour ?
Thanks.