Add support for receive.advertisePushOptions

See [install](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/install/installation.md)
which suggests doing:

```
sudo -u git -H git config --global receive.advertisePushOptions true
```

Signed-off-by: Don Bowman <db@donbowman.ca>
This commit is contained in:
Don Bowman 2019-02-06 20:16:43 -05:00 committed by Niclas Mietz
parent f307379e59
commit d902ec2ff8

View File

@ -62,6 +62,8 @@ EOF
exec_as_git git config --global core.autocrlf input
exec_as_git git config --global gc.auto 0
exec_as_git git config --global repack.writeBitmaps true
exec_as_git git config --global receive.advertisePushOptions true
# shallow clone gitlab-ce
echo "Cloning gitlab-ce v.${GITLAB_VERSION}..."