Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2015-08-07 22:13:18 +0300
committerAchilleas Pipinellis <axilleas@axilleas.me>2015-08-07 22:13:18 +0300
commit8ab6bd3eb3b49c6ca557b3053105de81af31ca51 (patch)
tree1819a87868b1ce01928434186ca4bb4437cfb440 /doc
parent59c486dcc1b46af62f8c526c9aea6a9c615fd914 (diff)
Do a git checkout on Gemfile.lock and schema.rb prior to update. Fixes #2227
Diffstat (limited to 'doc')
-rw-r--r--doc/update/patch_versions.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/update/patch_versions.md b/doc/update/patch_versions.md
index e29ee2a7b3d..22b9be059d6 100644
--- a/doc/update/patch_versions.md
+++ b/doc/update/patch_versions.md
@@ -22,6 +22,7 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production
```bash
cd /home/git/gitlab
sudo -u git -H git fetch --all
+sudo -u git -H git checkout -- Gemfile.lock db/schema.rb
sudo -u git -H git checkout LATEST_TAG
```