gitlab相关命令
gitlab配置文件:/etc/gitlab/gitlab.rb
启动服务 sudo gitlab-ctl start
停止服务 sudo gitlab-ctl stop
重启服务 sudo gitlab-ctl restart
修改配置后,执行以下命令:
sudo gitlab-ctl reconfigure
sudo gitlab-ctl restart(可选,建议执行)
备份gitlab
sudo gitlab-rake gitlab:backup:create
备份目录:/var/opt/gitlab/backups/
恢复gitlab备份
把备份文件放到/var/opt/gitlab/backups/
sudo gitlab-ctl stop
sudo gitlab-rake gitlab:backup:restore BACKUP=备份文件名称
sudo gitlab-ctl start