From d902ec2ff8f633f664016e7efa05c71cb886877a Mon Sep 17 00:00:00 2001 From: Don Bowman Date: Wed, 6 Feb 2019 20:16:43 -0500 Subject: [PATCH] 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 --- assets/build/install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/build/install.sh b/assets/build/install.sh index 8eb9ecad..bcca8cdd 100755 --- a/assets/build/install.sh +++ b/assets/build/install.sh @@ -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}..."