Submoduleで管理しているHugoのThemeが更新されているので追随させる(git一般の話)-色々な設定の記録たち
テーマ配下でsubmodule管理
git submodule add https://github.com/htakeuchi/hugo-PaperMod.git
submoduleを更新してpushする場合
git submodule foreach git pull origin master
git add .
git commit -m "update submodule" .
git push origin master