GitHubのテンプレートから作成されたリポジトリに、その後の変更分を取り込む

テンプレートのリポジトリをリモートリポジトリとして登録する。

git remote add template [URL of the template repo]
// 例
git remote add template https://github.com/xiaotiantakumi/az-func-ts-starter

テンプレートの変更分をフェッチする
※ざっくりとフェッチを説明すると、リモートの変更状態をとってくるというようなイメージ

git fetch --all

競合が出る場合があるので手動でマージしていく。

git merge --allow-unrelated-histories template/main