sher 发表于 2018-9-19 11:57:18

gitlab 2.6版本升级到3.0-ppabc博客

  第一步 关闭服务
/etc/init.d/gitlab stop第二部 更新代码cd /home/gitlab/gitlab # Get latest codesudo -u gitlab git pull origin stable # Install libssudo -u gitlab bundle install --without development test postgres # update dbsudo -u gitlab bundle exec rake db:migrate RAILS_ENV=production # !!! Config should be replaced with a new one. Check it after replacecp config/gitlab.yml.example config/gitlab.yml # update gitolite hooks # GITOLITE v2:sudo cp ./lib/hooks/post-receive /home/git/share/gitolite/hooks/common/post-receivesudo chown git:git /home/git/share/gitolite/hooks/common/post-receive # GITOLITE v3:sudo cp ./lib/hooks/post-receive /home/git/.gitolite/hooks/common/post-receivesudo chown git:git /home/git/.gitolite/hooks/common/post-receive # set valid path to hooks in gitlab.yml in git_host section# like thisgit_host:# gitolite 2hooks_path: /home/git/share/gitolite/hooks# gitolite 3hooks_path: /home/git/.gitolite/hooks/# Make some changes to gitolite config# For more information visit https://github.com/gitlabhq/gitlabhq/pull/1719 # gitolite v2sudo -u git -H sed -i 's/\(GL_GITCONFIG_KEYS\s*=>*\s*\).\{2\}/\1"\.\*"/g' /home/git/.gitolite.rc # gitlite v3sudo -u git -H sed -i "s/\(GIT_CONFIG_KEYS\s*=>*\s*\).\{2\}/\1'\.\*'/g" /home/git/.gitolite.rc# Check app statussudo -u gitlab bundle exec rake gitlab:app:status RAILS_ENV=production第三步 启动服务/etc/init.d/gitlab start
页: [1]
查看完整版本: gitlab 2.6版本升级到3.0-ppabc博客