TIL: Cherry picking without a commit
Cherry-picking git commits isn’t part of my day-to-day workflow, but I do need to do it occasionally. Generally, and in the case I ran into today, I had a range of commits that required cherry-picking from master onto a long-lived feature branch. Normally cherry-picking in git will take each commit and “copy” it onto the current branch. This is generally...