GitHubのテンプレートから作成されたリポジトリに、その後の変更分を取り込む
テンプレートのリポジトリをリモートリポジトリとして登録する。
1 2 3 | git remote add template [URL of the template repo] // 例 git remote add template https://github.com/xiaotiantakumi/az-func-ts-starter |
テンプレートの変更分をフェッチする
※ざっくりとフェッチを説明すると、リモートの変更状態をとってくるというようなイメージ
1 | git fetch --all |
競合が出る場合があるので手動でマージしていく。
1 | git merge --allow-unrelated-histories template/main |
ディスカッション
コメント一覧
まだ、コメントがありません