summaryrefslogtreecommitdiff
path: root/doc/install
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-09 03:11:51 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-09 03:11:51 +0000
commitfae5be5632becf76659bf9d85e19d9bedb675c89 (patch)
treea50c439ff465cfd152975e9fae6fc1511e287941 /doc/install
parent4d58268e5482283d736298c01e5efa5633ae04e1 (diff)
downloadgitlab-ce-fae5be5632becf76659bf9d85e19d9bedb675c89.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/install')
-rw-r--r--doc/install/installation.md13
1 files changed, 0 insertions, 13 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md
index 0b731161529..2f6adb06322 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -556,19 +556,6 @@ sudo -u git -H cp config/puma.rb.example config/puma.rb
# cores you have available. You can get that number via the `nproc` command.
sudo -u git -H editor config/puma.rb
-# Disable 'git gc --auto' because GitLab already runs 'git gc' when needed
-sudo -u git -H git config --global gc.auto 0
-
-# Enable packfile bitmaps
-sudo -u git -H git config --global repack.writeBitmaps true
-
-# Enable push options
-# Refer to https://docs.gitlab.com/ee/user/project/push_options.html for more information.
-sudo -u git -H git config --global receive.advertisePushOptions true
-
-# Enable fsyncObjectFiles to reduce risk of repository corruption if the server crashes
-sudo -u git -H git config --global core.fsyncObjectFiles true
-
# Configure Redis connection settings
sudo -u git -H cp config/resque.yml.example config/resque.yml
sudo -u git -H cp config/cable.yml.example config/cable.yml