0

I would like to be able to select which changes to include in the cherry-pick at a patch-level much like the -p option when adding changes to commit?

SwissCodeMen
  • 4,222
  • 8
  • 24
  • 34
feeling_lonely
  • 6,665
  • 4
  • 27
  • 53

1 Answers1

0

You could use git show instead of git cherry-pick command:

git show <commit_id> -- <file_path> | git apply

Then, commit your changes.