I am newby with gitolite. I've install gitolite on a remote server(192.168.1.109)
So I could git-cloning gitolite-admin.git.
git clone ssh://git@192.168.1.109/gitolite-admin.git
wanted to add user and repo using gitolite. following is ordinary add user process.
ssh-keygen -t rsa -C "test" -f test
added the public key in keydir/test.pub
and then, git add
/ git commit
/ git push
is done well, GitServer echo msg for git push is:
Total 5 (delta 0), reused 0 (delta 0)
remote: keydir/test.pub: Permission denied
remote: FATAL: fingerprinting failed for 'keydir/test.pub'
To ssh://git@192.168.1.109/gitolite-admin.git
5b8c75d..8c12dac master -> master
My remote server is CentOS.
remote: keydir/test.pub: Permission denied
remote: FATAL: fingerprinting failed for 'keydir/test.pub'
How would you avoid that error message?