質問編集履歴
1
参照先urlを追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,15 +1,20 @@
|
|
1
1
|
GitLabを Update するときの“念のため”のバックアップは
|
2
2
|
下記の方法が本家のサイトに書かれていますが、
|
3
3
|
Make a backup (Optional)
|
4
|
+
https://about.gitlab.com/update/#centos-7
|
4
5
|
```
|
5
6
|
sudo gitlab-rake gitlab:backup:create STRATEGY=copy
|
6
7
|
```
|
7
8
|
|
9
|
+
|
8
10
|
単にバックアップする方法を調べると
|
9
11
|
Use this command if you've installed GitLab with the Omnibus package:
|
12
|
+
https://docs.gitlab.com/ee/raketasks/backup_restore.html
|
10
13
|
```
|
11
14
|
sudo gitlab-rake gitlab:backup:create
|
12
15
|
```
|
16
|
+
|
17
|
+
|
13
18
|
とあります。
|
14
19
|
|
15
20
|
`STRATEGY=copy`をつけると何が変わるのでしょうか?
|