I want to create public git repository on my dedicated server for anyone to clone but it keeps asking me for password for git user.
I have created user named git without password. Used:
passwd -d git
Unfortunately every time I try to do:
git clone git@myhost:myrepo.git
I'm getting asked for password.
I have tried setting in sshd_config
Match user git
PermitEmptyPasswords yes
PasswordAuthentication yes
With either yes and no for PasswordAuthentication
but still no use.