按照5.1的说明安装gitlab
https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/installation.md
当我运行命令来测试安装时,我收到错误“为用户配置了 Git?...否”
root@gitlab:/home/git/gitlab# sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production
Checking Environment ...
Git configured for git user? ... no
Try fixing it:
sudo -u git -H git config --global user.name "GitLab"
sudo -u git -H git config --global user.email "gitlab@gitlab.ac"
For more information see:
doc/install/installation.md in section "GitLab"
Please fix the error above and rerun the checks.
Has python2? ... yes
python2 is supported version? ... yes
说明中没有提到为 git 用户设置 user.name 和 user.email。我可以安全地忽略此警告,还是应该偏离说明并设置它?