How do I backport a commit in git?

This is exactly the use case for git-cherry-pick

git checkout maintenance
git cherry-pick <commit from master>

Leave a Comment