diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2016-08-30 13:49:17 +0200 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2016-08-30 13:49:17 +0200 |
commit | 74abc527ecaf6a2e94cab4c36221ee921cedda82 (patch) | |
tree | a7b0748b118b45192a5909a74b917a3163a70c6b /doc/install | |
parent | 2778dec131c2afac9fcdb2c42365b69099a5ae5b (diff) | |
download | gitlab-ce-74abc527ecaf6a2e94cab4c36221ee921cedda82.tar.gz |
Create bitmaps during 'git gc'
Diffstat (limited to 'doc/install')
-rw-r--r-- | doc/install/installation.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index d4b89fa8345..f012c9cd51b 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -331,6 +331,10 @@ sudo usermod -aG redis git # 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 + + # Configure Redis connection settings sudo -u git -H cp config/resque.yml.example config/resque.yml |