Commit 35db034e61cc8fa2a747ee9bf7856668f9dda220
1 parent
f285da48
Fix 6.3 branch name
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
1 changed file
with
5 additions
and
5 deletions
Show diff stats
doc/update/6.2-to-6.3.md
@@ -21,7 +21,7 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production | @@ -21,7 +21,7 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production | ||
21 | ```bash | 21 | ```bash |
22 | cd /home/git/gitlab | 22 | cd /home/git/gitlab |
23 | sudo -u git -H git fetch | 23 | sudo -u git -H git fetch |
24 | -sudo -u git -H git checkout 6.3-stable | 24 | +sudo -u git -H git checkout 6-3-stable |
25 | ``` | 25 | ``` |
26 | 26 | ||
27 | ### 3. Update gitlab-shell | 27 | ### 3. Update gitlab-shell |
@@ -62,11 +62,11 @@ sudo -u git -H bundle exec rake cache:clear RAILS_ENV=production | @@ -62,11 +62,11 @@ sudo -u git -H bundle exec rake cache:clear RAILS_ENV=production | ||
62 | TIP: to see what changed in gitlab.yml.example in this release use next command: | 62 | TIP: to see what changed in gitlab.yml.example in this release use next command: |
63 | 63 | ||
64 | ``` | 64 | ``` |
65 | -git diff 6.2-stable:config/gitlab.yml.example 6.3-stable:config/gitlab.yml.example | 65 | +git diff 6.2-stable:config/gitlab.yml.example 6-3-stable:config/gitlab.yml.example |
66 | ``` | 66 | ``` |
67 | 67 | ||
68 | -* Make `/home/git/gitlab/config/gitlab.yml` same as https://github.com/gitlabhq/gitlabhq/blob/6.3-stable/config/gitlab.yml.example but with your settings. | ||
69 | -* Make `/home/git/gitlab/config/unicorn.rb` same as https://github.com/gitlabhq/gitlabhq/blob/6.3-stable/config/unicorn.rb.example but with your settings. | 68 | +* Make `/home/git/gitlab/config/gitlab.yml` same as https://github.com/gitlabhq/gitlabhq/blob/6-3-stable/config/gitlab.yml.example but with your settings. |
69 | +* Make `/home/git/gitlab/config/unicorn.rb` same as https://github.com/gitlabhq/gitlabhq/blob/6-3-stable/config/unicorn.rb.example but with your settings. | ||
70 | * Copy rack attack middleware config | 70 | * Copy rack attack middleware config |
71 | 71 | ||
72 | ```bash | 72 | ```bash |
@@ -82,7 +82,7 @@ sudo cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab | @@ -82,7 +82,7 @@ sudo cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab | ||
82 | 82 | ||
83 | ```bash | 83 | ```bash |
84 | sudo rm /etc/init.d/gitlab | 84 | sudo rm /etc/init.d/gitlab |
85 | -sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/6.3-stable/lib/support/init.d/gitlab | 85 | +sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/6-3-stable/lib/support/init.d/gitlab |
86 | sudo chmod +x /etc/init.d/gitlab | 86 | sudo chmod +x /etc/init.d/gitlab |
87 | ``` | 87 | ``` |
88 | 88 |