Sharing git repo without SSH
- by user13323
Hi.
I'm trying to set-up a private git repo for code sharing, but found out that most of the implementations out there require use of SSH public keys, for example:
http://www.jedi.be/blog/2009/05/06/8-ways-to-share-your-git-repository/
The only approach looking reasonable is the git-daemon, but it does not contain any authentication, and while it might be a good option for LAN, it is no go for remote working.
Coming from SVN daemon, where all the access was conveniently controlled via single file, the SSH keys scheme quite a hurdle for me.
Is there any way to securely share multiple Git repositories, without using SSH authentication?
Thanks in advance!