summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2016-08-31 17:12:37 +0200
committerJacob Vosmaer <jacob@gitlab.com>2016-08-31 17:12:37 +0200
commit90c0fdfc9da36c29fe5093b78e0581c19c2279b5 (patch)
treefa37cfa92cb03cb7aa8347074607377ef90b11e2 /doc
parent5ebc787ca02e018b0344bd4e4fc2a6ac9f6f1677 (diff)
downloadgitlab-ce-90c0fdfc9da36c29fe5093b78e0581c19c2279b5.tar.gz
More changes suggested by Robert
Diffstat (limited to 'doc')
-rw-r--r--doc/install/installation.md1
-rw-r--r--doc/update/8.11-to-8.12.md5
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md
index f012c9cd51b..2d0932d4f04 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -334,7 +334,6 @@ sudo usermod -aG redis git
# Enable packfile bitmaps
sudo -u git -H git config --global repack.writeBitmaps true
-
# Configure Redis connection settings
sudo -u git -H cp config/resque.yml.example config/resque.yml
diff --git a/doc/update/8.11-to-8.12.md b/doc/update/8.11-to-8.12.md
index aac19897f9e..953e9d7e74c 100644
--- a/doc/update/8.11-to-8.12.md
+++ b/doc/update/8.11-to-8.12.md
@@ -105,7 +105,6 @@ sudo -u git -H bundle exec rake db:migrate RAILS_ENV=production
# Clean up assets and cache
sudo -u git -H bundle exec rake assets:clean assets:precompile cache:clear RAILS_ENV=production
-
```
### 8. Update configuration files
@@ -120,8 +119,10 @@ git diff origin/8-11-stable:config/gitlab.yml.example origin/8-12-stable:config/
#### Git configuration
+Configure Git to generate packfile bitmaps (introduced in Git 2.0) on
+the GitLab server during `git gc`.
+
```sh
-# Enable packfile bitmaps
sudo -u git -H git config --global repack.writeBitmaps true
```