2024-04-10 gitで特定ファイルを別ブランチから取り込む
特定のファイルを別ブランチから取り込む方法。
git checkout
$ git checkout other-branch -- path/to/file
git restore
$ git restore --source other-branch path/to/file
特定のファイルを別ブランチから取り込む方法。
$ git checkout other-branch -- path/to/file
$ git restore --source other-branch path/to/file