Commit f591e4a48c662f2ed5a5c1f3e1ed92d7ad2cd1fb

Authored by dosire
1 parent c3ae30b6

Explain stash.

Showing 1 changed file with 6 additions and 6 deletions   Show diff stats
doc/update/upgrader.md
1 1 # GitLab Upgrader
2 2  
3   -GitLab Upgrader - ruby script that allows you easily upgrade GitLab to latest minor version.
4   -Ex. it can update your application from 6.4 to latest GitLab 6 version (like 6.5.1).
5   -You still need to create backup and manually restart GitLab but all other operations can be done by upgrade tool.
  3 +GitLab Upgrader - a ruby script that allows you easily upgrade GitLab to latest minor version.
  4 +For example it can update your application from 6.4 to latest GitLab 6 version (like 6.6.1).
  5 +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.
  6 +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.
6 7  
7   -__GitLab Upgrader is available only for version 6.4.2 or higher__
  8 +__GitLab Upgrader is available only for GitLab version 6.4.2 or higher__
8 9  
9 10 ### 0. Backup
10 11  
... ... @@ -20,9 +21,8 @@ __GitLab Upgrader is available only for version 6.4.2 or higher__
20 21 cd /home/git/gitlab
21 22 sudo -u git -H ruby script/upgrade.rb
22 23  
23   - # it also supports -y option to avouid user input
  24 + # it also supports -y option to avoid waiting for user input
24 25 # sudo -u git -H ruby script/upgrade.rb -y
25   -
26 26  
27 27 ### 3. Start application
28 28  
... ...