Instructions give incorrect command to create git user

Created by: lloydsparkes

The command we are given in section 3 in https://github.com/gitlabhq/gitlabhq/blob/5-0-stable/doc/install/installation.md is

sudo adduser --disabled-login --gecos 'GitLab' git

but the --disabled-login in my experience stops the ability for the account to be ssh'd into and until I ran passwd on the git account to give it a password, I could not push/pull

the correct command should be

sudo adduser --gecos 'GitLab' git