Commit 983bf359945bc9d4ec1e9581e6bc35dac65e3a3b
1 parent
f285da48
Exists in
master
and in
4 other branches
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 | 21 | ```bash |
| 22 | 22 | cd /home/git/gitlab |
| 23 | 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 | 27 | ### 3. Update gitlab-shell |
| ... | ... | @@ -62,11 +62,11 @@ sudo -u git -H bundle exec rake cache:clear RAILS_ENV=production |
| 62 | 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 | 70 | * Copy rack attack middleware config |
| 71 | 71 | |
| 72 | 72 | ```bash |
| ... | ... | @@ -82,7 +82,7 @@ sudo cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab |
| 82 | 82 | |
| 83 | 83 | ```bash |
| 84 | 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 | 86 | sudo chmod +x /etc/init.d/gitlab |
| 87 | 87 | ``` |
| 88 | 88 | ... | ... |