diff options
author | Ben Bodenmiller <bbodenmiller@hotmail.com> | 2014-10-12 14:39:41 -0700 |
---|---|---|
committer | Ben Bodenmiller <bbodenmiller@hotmail.com> | 2014-10-12 14:39:41 -0700 |
commit | 2b3090d91b6d508cb88feab9c4d32791566bab63 (patch) | |
tree | 3999e54a3c47d55f3b8488444b63381eb37bfce5 /doc/update/7.2-to-7.3.md | |
parent | b956605f9e5f95ded853d3458f0f132dbb5b892a (diff) | |
download | gitlab-ce-2b3090d91b6d508cb88feab9c4d32791566bab63.tar.gz |
simplify schema.rb reset in upgrade guides
Diffstat (limited to 'doc/update/7.2-to-7.3.md')
-rw-r--r-- | doc/update/7.2-to-7.3.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/update/7.2-to-7.3.md b/doc/update/7.2-to-7.3.md index 329b763322a..44f3f8f1a38 100644 --- a/doc/update/7.2-to-7.3.md +++ b/doc/update/7.2-to-7.3.md @@ -18,12 +18,12 @@ sudo service gitlab stop ```bash cd /home/git/gitlab sudo -u git -H git fetch --all +sudo -u git -H git checkout -- db/schema.rb # local changes will be restored automatically ``` For GitLab Community Edition: ```bash -sudo -u git -H git checkout -- db/schema.rb # local changes will be restored automatically sudo -u git -H git checkout 7-3-stable ``` @@ -32,7 +32,6 @@ OR For GitLab Enterprise Edition: ```bash -sudo -u git -H git checkout -- db/schema.rb # local changes will be restored automatically sudo -u git -H git checkout 7-3-stable-ee ``` |