diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-01-27 16:22:42 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-01-27 16:22:42 +0000 |
commit | 4413c2325ae747a9362125dbe051615b8ec697d7 (patch) | |
tree | f983cbdad6acc085aef05f67b9dcc31f160d8258 /doc | |
parent | 67faaf6e08bc9ec5b543dd354d146b63ec0412b5 (diff) | |
parent | f591e4a48c662f2ed5a5c1f3e1ed92d7ad2cd1fb (diff) | |
download | gitlab-ce-4413c2325ae747a9362125dbe051615b8ec697d7.tar.gz |
Merge branch 'stash-pgrade' into 'master'
Document the stash of changes during the upgrade
Diffstat (limited to 'doc')
-rw-r--r-- | doc/update/upgrader.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/update/upgrader.md b/doc/update/upgrader.md index 1f51005a8e9..1eec5a8f396 100644 --- a/doc/update/upgrader.md +++ b/doc/update/upgrader.md @@ -1,10 +1,11 @@ # GitLab Upgrader -GitLab Upgrader - ruby script that allows you easily upgrade GitLab to latest minor version. -Ex. it can update your application from 6.4 to latest GitLab 6 version (like 6.5.1). -You still need to create backup and manually restart GitLab but all other operations can be done by upgrade tool. +GitLab Upgrader - a ruby script that allows you easily upgrade GitLab to latest minor version. +For example it can update your application from 6.4 to latest GitLab 6 version (like 6.6.1). +You still need to create a a backup and manually restart GitLab after runnning the script but all other operations are done by this upgrade script. +If you have local changes to your GitLab repository the script will stash them and you need to use `git stash pop` after running the script. -__GitLab Upgrader is available only for version 6.4.2 or higher__ +__GitLab Upgrader is available only for GitLab version 6.4.2 or higher__ ### 0. Backup @@ -20,9 +21,8 @@ __GitLab Upgrader is available only for version 6.4.2 or higher__ cd /home/git/gitlab sudo -u git -H ruby script/upgrade.rb - # it also supports -y option to avouid user input + # it also supports -y option to avoid waiting for user input # sudo -u git -H ruby script/upgrade.rb -y - ### 3. Start application |