2

按照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。我可以安全地忽略此警告,还是应该偏离说明并设置它?

4

1 回答 1

2

你是对的它没有。当您从 Web 界面编辑某些内容时,需要此配置。我发送了一个拉取请求,将其包含在安装文档中。

于 2013-05-09T12:46:02.340 回答