I am trying to merge two branches into a single new branch, and all three branches have a single parent branch in common.
Two branches "feat1" and "feat2" are isolated and branched off from "dev" branch. Now I want to create a new branch, called "next-release" from "dev", and merge "feat1" and "feat2".
What I did :
- checked out to "next-release" and merged "feat1".
- then merged "feat2".
At this point, I'm getting "Please enter a commit message to explain why this merge is necessary..."
.
Am I doing it right?
To explain it better:
dev
|
----------------
| | |
feat1 feat2 next-release = feat1 + feat2
Any help is appreciated. Thanks.