I have a gitea instance set up and have ben using it for a while for private repositories without issue. I’m now trying to create a public repository that I want people to be able to clone from without a username / password. I have set the repo to allow anonymous reads in the Settings / Public Access panel. So now I’m trying:
git clone https://git.myserver.com/user/my-repo.git
But I’m being asked to enter a username and password. I’ve seen previous posts saying that setting REQUIRE_SIGNIN_VIEW = true in app.ini solved this issue but this is already set in my ini file and I’m still having the problem.
I can view the webpage for the repository without signing in, so it seems the setting is partly working. Any ideas how to solve this and allow anonymous clones?