背景
サブモジュールをアップデートしたので、記録です。
手順
状態確認です。
git status
bash
以下のように出力されます。
ブランチ main
Your branch is up to date with 'origin/main'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
(commit or discard the untracked or modified content in submodules)
modified: themes/blowfish (untracked content)
fallback
アップデート
アップデートします。
git submodule update --remote --merge
bash
アップデートをためていたので、たまっていたアップデートが表示されます。
remote: Enumerating objects: 6911, done.
remote: Counting objects: 100% (3773/3773), done.
remote: Compressing objects: 100% (108/108), done.
remote: Total 6911 (delta 3703), reused 3665 (delta 3665), pack-reused 3138 (from 1)
Receiving objects: 100% (6911/6911), 51.14 MiB | 22.24 MiB/s, done.
Resolving deltas: 100% (4599/4599), completed with 327 local objects.
From https://github.com/nunocoracao/blowfish
7d634c9a..24dfec3d dev -> origin/dev
13ff6f53..96a116a8 main -> origin/main
* [new tag] v2.83.0 -> v2.83.0
* [new tag] latest -> latest
* [new tag] v2.67.0 -> v2.67.0
* [new tag] v2.68.0 -> v2.68.0
* [new tag] v2.69.0 -> v2.69.0
* [new tag] v2.70.0 -> v2.70.0
* [new tag] v2.71.0 -> v2.71.0
* [new tag] v2.71.1 -> v2.71.1
* [new tag] v2.72.0 -> v2.72.0
* [new tag] v2.72.1 -> v2.72.1
* [new tag] v2.73.0 -> v2.73.0
* [new tag] v2.74.0 -> v2.74.0
* [new tag] v2.75.0 -> v2.75.0
* [new tag] v2.76.0 -> v2.76.0
* [new tag] v2.77.0 -> v2.77.0
* [new tag] v2.77.1 -> v2.77.1
* [new tag] v2.78.0 -> v2.78.0
* [new tag] v2.79.0 -> v2.79.0
* [new tag] v2.80.0 -> v2.80.0
* [new tag] v2.81.0 -> v2.81.0
* [new tag] v2.82.0 -> v2.82.0
Updating f06bcb2a..96a116a8
Fast-forward
.github/workflows/create-config-zip.yml | 21 +
.github/workflows/firebase-preview.yml | 38 -
.github/workflows/firebase-production.yml | 39 -
.github/workflows/hugo-version-update.yml | 2 +-
README.id.md | 145 +
README.ja.md | 179 +
README.md | 11 +-
README.zh-cn.md | 176 +
assets/css/compiled/main.css | 812 +-
〜省略〜
fallback
これでアップデート完了です。