3.gitlab数据备份恢复、汉化与代码部署方式

root@wang:/opt/web1# git checkout develop
Already on 'develop'
Your branch is up to date with 'origin/develop'.
切换到开发分支
root@wang:/opt/web1# git checkout
Your branch is up to date with 'origin/develop'.
查看当前分支
root@wang:/opt/web1# git checkout master
切换到master分支

这个配置文件会记录,有几个分支
root@wang:/opt/web1# vim index.html 
v4
修改代码,
root@wang:/opt/web1# git add ./*
git add:把要提交的所有修改放到暂存区(Stage)
root@wang:/opt/web1# git commit -m "v4"
git commit:一次性把暂存区的所有修改提交到分支
root@wang:/opt/web1# git push 
   537951f..170cda2  develop -> develop
往开发分支提交,克隆的是那个分支提交的就是哪个分支

合并分支

image.png
image.png
image.png

接下来用管理员用户登录

同意合并,

等下午视频在看

git 缓存区与工作区等概念: 工作区:clone 的代码或者开发自己编写的代码文件所在的目录,通常是代码所在的一 个服务的目录名称。 暂存区:用于存储在工作区中对代码进行修改后的文件所保存的地方,使用 git add 添 加。 本地仓库:用于提交存储在工作区和暂存区中改过的文件地方,使用 git commi 提交。 远程仓库:多个开发共同协作提交代码的仓库,即 gitlab 服务器

image.png
2.1.3.20: gitlab 数据备份恢复:
2.1.3.20.1: 停止 gitlab 数据服务:
root@s1:~# gitlab-ctl stop unicorn
ok: down: unicorn: 1s, normally up
root@s1:~# gitlab-ctl stop sidekiq
ok: down: sidekiq: 0s, normally up
2.1.3.20.2: 手动备份数据:
# gitlab-rake gitlab:backup:create #在任意目录即可备份当前 gitlab 数据
# gitlab-ctl start #备份完成后启动 gitlab

gitlab备份脚本

root@wang:/opt/web1# cat git-bakup.sh 
#!/bin/bash
gitlab-ctl stop unicorn
gitlab-ctl  stop sidekiq 
gitlab-rake gitlab:backup:create 
gitlab-ctl  start 
Creating backup archive: 1573202159_2019_11_08_11.11.5_gitlab_backup.tar ... done
这个是备份的时间戳和文件
/var/opt/gitlab/backups/1573202159_2019_11_08_11.11.5_gitlab_backup.tar
备份的文件在这个目录里

删除项目,

删除

恢复文件
/var/opt/gitlab/backups/ # Gitlab 数据备份目录, 需要使用命令备份的
/var/opt/gitlab/nginx/conf #nginx 配置文件
/etc/gitlab/gitlab.rb #gitlab 配置文件

执行恢复:
删除一些数据,测试能否恢复
# gitlab-ctl stop unicorn
# gitlab-ctl stop sidekiq #恢复数据之前停止服务
root@s1:~# gitlab-rake gitlab:backup:restore BACKUP=备份文件名只到版本号,


root@wang:/var/opt/gitlab/backups# gitlab-rake gitlab:backup:restore BACKUP=1573202159_2019_11_08_11.11.5
恢复数据,然后输入两边yes,
root@wang:/var/opt/gitlab/backups# gitlab-ctl start 
然后在启动服务,验证数据是否恢复了

查看刚才删除的两个项目,已经回来了

设置汉化

image.png
在这里改成简体中文

https://gitlab.com/xhang/gitlab

下载汉化包

root@wang:/var/opt/gitlab/backups# gitlab-ctl stop 
停止服务
gitlab-v11.11.5-zh.tar
拖过汉化包
root@wang:/var/opt/gitlab/backups# tar xf gitlab-v11.11.5-zh.tar 
root@wang:/var/opt/gitlab/backups# cd gitlab-v11.11.5-zh/
root@wang:/var/opt/gitlab/backups/gitlab-v11.11.5-zh# cp -rf * /opt/gitlab/embedded/service/gitlab-rails/
拷贝汉化包过去
root@wang:/var/opt/gitlab/backups/gitlab-v11.11.5-zh# gitlab-ctl reconfigure
重新初始化
root@wang:/var/opt/gitlab/backups/gitlab-v11.11.5-zh# gitlab-ctl start
把服务起来
发现已经汉化成功
root@wang:~# head -1 /opt/gitlab/version-manifest.txt 
gitlab-ce 11.11.5
查看gitlab的版本

你可能感兴趣的:(3.gitlab数据备份恢复、汉化与代码部署方式)