Git: Cherry-Pick to working copy without commit
Solution 1:
Use '-n' flag with the cherry-picking which is "no commit"
See here: http://git-scm.com/docs/git-cherry-pick
git cherry-pick -n <HASH>
To then remove it from the staging area
git reset
Solution 2:
If you are using Terminal
git cherry-pick -n <HASH>
If you are using Intellij Idea
Settings -> Version Control -> git
untick commit automatically on cherry-pick