Merge them
Create a new change in master
git checkout masterecho "content modified in master" > code.txtgit commit -am "content modified in master"Merge the branch on master
git merge featureResults in conflict
Auto-merging code.txt
CONFLICT (content): Merge conflict in code.txt
Automatic merge failed; fix conflicts and then commit the result.cat code.txt
<<<<<<< HEAD
content modified in master
=======
some content from feature
>>>>>>> featureResolve manually
Commit again
Last updated