Commit 400a55805c96f8ec463b941baf08c6f494742585

Authored by Dmitriy Zaporozhets
2 parents 617cc8fb 27fe6cbe

Merge branch 'gitlab_shell_in_patch_doc' of /home/git/repositories/gitlab/gitlabhq

Showing 1 changed file with 11 additions and 3 deletions   Show diff stats
doc/update/patch_versions.md
@@ -21,7 +21,15 @@ cd /home/git/gitlab @@ -21,7 +21,15 @@ cd /home/git/gitlab
21 sudo -u git -H git pull origin 6-2-stable 21 sudo -u git -H git pull origin 6-2-stable
22 ``` 22 ```
23 23
24 -### 3. Install libs, migrations, etc. 24 +### 4. Update gitlab-shell if necessary
  25 +
  26 +```bash
  27 +cd /home/git/gitlab-shell
  28 +sudo -u git -H git fetch
  29 +sudo -u git -H git checkout v1.7.4
  30 +```
  31 +
  32 +### 4. Install libs, migrations, etc.
25 33
26 ```bash 34 ```bash
27 cd /home/git/gitlab 35 cd /home/git/gitlab
@@ -38,12 +46,12 @@ sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production @@ -38,12 +46,12 @@ sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
38 sudo -u git -H bundle exec rake cache:clear RAILS_ENV=production 46 sudo -u git -H bundle exec rake cache:clear RAILS_ENV=production
39 ``` 47 ```
40 48
41 -### 4. Start application 49 +### 5. Start application
42 50
43 sudo service gitlab start 51 sudo service gitlab start
44 sudo service nginx restart 52 sudo service nginx restart
45 53
46 -### 5. Check application status 54 +### 6. Check application status
47 55
48 Check if GitLab and its environment are configured correctly: 56 Check if GitLab and its environment are configured correctly:
49 57