Git Cherry Pick Изменения только одного файла из Commit

Get the commit
git cherry-pick -n <commit>

Unstage everything
git reset HEAD

Stage the modifications you want to keep
git add <path>

Make the work tree match the index
# (do this from the top level of the repo)
git checkout .
Relieved Reindeer