1

I have a workflow where we have two branches master and develop. I checked out to develop, created new branch feature1 and merged its changes to develop. Now after passing testing I want to merge my changes of ONLY feature1 into master but when I set the base branch as master while merging feature1, it is trying to merge all commits of develop branch into master branch.

How can I accomplish my goal?

SwissCodeMen
  • 4,222
  • 8
  • 24
  • 34

1 Answers1

0

You should create a new branch from master, commit the changes you made, and then merge It to master. You May try to merge from a specific tag, but if you create a branch from develop, i think that all the commit you did, Will Be merged.

Davide
  • 11
  • 2