How to cherry-pick from a remote branch?

I’m having trouble performing a cherry-pick. On my local machine, I’m currently on my “master” branch. I want to cherry-pick in a commit from another branch, named “zebra”. The “zebra” branch is a remote branch. So git status: # On branch master nothing to commit (working directory clean) Ok, now I try to cherry-pick the … Read more

How to publish an npm package with distribution files?

I would like to publish a npm package that contains my source as well as distribution files. My Github repository contains src folder which contains JavaScript source files. The build process generates dist folder that contains the distribution files. Of course, the dist folder is not checked into the Github repository. How do I publish … Read more