gitで別ブランチのファイルをパッチ適用する
git restore で可能。 git-restore – Git コマンドリファレンス(日本語版)
git restore -p --source=A -- path/to/file-p でパッチ適用モードになる。--source で指定したブランチから path/to/file を取得し、対話的にパッチを適用できる。
git restore で可能。 git-restore – Git コマンドリファレンス(日本語版)
git restore -p --source=A -- path/to/file-p でパッチ適用モードになる。--source で指定したブランチから path/to/file を取得し、対話的にパッチを適用できる。