Git: Cherry-Pick to working copy without commit

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 unstage the staged changes

git reset

Leave a Comment