2013-04-30 03:29:30 -04:00
# From 2.6 to 3.0
2017-02-06 09:46:58 -05:00
*Make sure you view this [upgrade guide from the `master` branch ](https://gitlab.com/gitlab-org/gitlab-ce/tree/master/doc/update/2.6-to-3.0.md ) for the most up to date instructions.*
2013-04-30 03:29:30 -04:00
2014-04-24 18:48:22 -04:00
## 1. Stop server & resque
2013-04-30 03:29:30 -04:00
sudo service gitlab stop
2014-04-24 18:48:22 -04:00
## 2. Update code & db
2013-04-30 03:29:30 -04:00
```bash
# Get latest code
git fetch origin
git checkout v3.0.3
2016-06-01 11:01:14 -04:00
# The Modernizr gem was yanked from RubyGems. It is required for GitLab >= 2.8.0
# Edit `Gemfile` and change `gem "modernizr", "2.5.3"` to
# `gem "modernizr-rails", "2.7.1"``
sudo -u gitlab -H vim Gemfile
2013-04-30 03:29:30 -04:00
# Install libs
sudo -u gitlab bundle install --without development test postgres
# update db
sudo -u gitlab bundle exec rake db:migrate RAILS_ENV=production
# !!! Config should be replaced with a new one. Check it after replace
cp config/gitlab.yml.example config/gitlab.yml
2015-02-03 18:18:40 -05:00
# update Gitolite hooks
2013-04-30 03:29:30 -04:00
2015-02-03 18:18:40 -05:00
# Gitolite v2:
2013-04-30 03:29:30 -04:00
sudo cp ./lib/hooks/post-receive /home/git/share/gitolite/hooks/common/post-receive
sudo chown git:git /home/git/share/gitolite/hooks/common/post-receive
2015-02-03 18:18:40 -05:00
# Gitolite v3:
2013-04-30 03:29:30 -04:00
sudo cp ./lib/hooks/post-receive /home/git/.gitolite/hooks/common/post-receive
sudo chown git:git /home/git/.gitolite/hooks/common/post-receive
# set valid path to hooks in gitlab.yml in git_host section
# like this
git_host:
2015-02-03 18:18:40 -05:00
# Gitolite 2
2013-04-30 03:29:30 -04:00
hooks_path: /home/git/share/gitolite/hooks
2015-02-03 18:18:40 -05:00
# Gitolite 3
2013-04-30 03:29:30 -04:00
hooks_path: /home/git/.gitolite/hooks/
2015-02-03 18:18:40 -05:00
# Make some changes to Gitolite config
2013-04-30 03:29:30 -04:00
# For more information visit https://github.com/gitlabhq/gitlabhq/pull/1719
2015-02-03 18:18:40 -05:00
# Gitolite v2
2013-04-30 03:29:30 -04:00
sudo -u git -H sed -i 's/\(GL_GITCONFIG_KEYS\s*=>*\s*\).\{2\}/\\1"\.\*"/g' /home/git/.gitolite.rc
# gitlite v3
sudo -u git -H sed -i "s/\(GIT_CONFIG_KEYS\s*=>*\s*\).\{2\}/\\1'\.\*'/g" /home/git/.gitolite.rc
# Check app status
sudo -u gitlab bundle exec rake gitlab:app:status RAILS_ENV=production
```
2014-04-24 18:48:22 -04:00
## 3. Start all
2013-04-30 03:29:30 -04:00
sudo service gitlab start