Git - Cutting releases from commits
Table of Contents
Git - cherry picking
- A little tedious.
- Works best when there are only a few commits to work with.
Process:
- From eclipse eGit, checkout develop.
- Go to history, select the commit and create a branch from the commit.
- Run mvn clean install to make sure everything is good.
- Push the branch.
- Double check to see if any commits are missing. If so, do git cherry-pick
- Create the pull request.