How to perform merge?
I have a master branch and a feature branch. The feature branch has several changes but the master branch has many changes like removing 10 projects from the repository. The question is how to merge the feature branch back to master branch? 1) merge feature with master and then master with feature OR 2) merge master with feature directly checkout master checkout -b develop (assuming you don't already have a develop branch) merge --no-ff your-feature-branch Resolve any conflicts in code. Test, test test. checkout master merge --no-ff develop Then deploy your code. I really like this branching