Gitlab 设置,rake 失败,因为没有 --global user.name

Gitlab 设置,rake 失败,因为没有 --global user.name

按照 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 "[email protected]"
  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。我可以安全地忽略此警告吗,还是应该偏离说明并进行设置?

答案1

是的,您应该配置姓名和电子邮件。

这将被纳入未来版本的文档中。

https://github.com/gitlabhq/gitlabhq/pull/3894

相关内容