I setup gitlab on Centos 6x
. Webserver : nginx
.
I installed my gitlab follow link .
And i have a problem : when i push my project on client to gitlab@mydomain.com
, system ask password :
git push -u origin master
git@gitlab.mydomain.com's password:
Then i show config file of my project on client :
cat ../.git/config
[core]
repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true
[branch "master"]
[remote "origin"]
url = git@gitlab.mydomain.com:myusename/myproject.git fetch = +refs/heads/*:refs/remotes/origin/*
System showed log When i check :
bundle exec rake gitlab:check RAILS_ENV=production
/usr/local/lib/ruby/gems/2.0.0/gems/bundler-1.3.5/lib/bundler/runtime.rb:216: warning: Insecure world writable dir /usr/bin in PATH, mode 040777
/usr/local/lib/ruby/gems/2.0.0/gems/bundler-1.3.5/lib/bundler/runtime.rb:216: warning: Insecure world writable dir /usr/bin in PATH, mode 040777
Checking Environment ...
..
..
I want to turn off the password requirement .
Some body help me , thanks a lot .