Commit 0f7c402c735eca30880b428ccad4479c6ab80884

Authored by Axilleas Pipinellis
1 parent 25d5c1f6

Configure git global settings

Setting Git's global user.name and user.email are missing from
instructions, causing check.rake to fail at this step.

Signed-off-by: Axilleas Pipinellis <axilleas@archlinux.gr>
Showing 1 changed file with 6 additions and 1 deletions   Show diff stats
doc/install/installation.md
@@ -176,8 +176,13 @@ do so with caution! @@ -176,8 +176,13 @@ do so with caution!
176 # Copy the example Puma config 176 # Copy the example Puma config
177 sudo -u git -H cp config/puma.rb.example config/puma.rb 177 sudo -u git -H cp config/puma.rb.example config/puma.rb
178 178
  179 + # Configure Git global settings for git user, useful when editing via web
  180 + # Edit user.email according to what is set in gitlab.yml
  181 + sudo -u git -H git config --global user.name "GitLab"
  182 + sudo -u git -H git config --global user.email "gitlab@localhost"
  183 +
179 **Important Note:** 184 **Important Note:**
180 -Make sure to edit both files to match your setup. 185 +Make sure to edit both `gitlab.yml` and `puma.rb` to match your setup.
181 186
182 ## Configure GitLab DB settings 187 ## Configure GitLab DB settings
183 188