Home > Blockchain >  Git Issue : Unable to merge Dev branch to master
Git Issue : Unable to merge Dev branch to master

Time:02-15

I am trying to merge dev branch to master. I am getting below message.

I did

git checkout 84c65de

followed by

git merge remotes/origin/master

I resolved issues in Vs Code. What to do next. Shall I push change to dev/master?

enter image description here

CodePudding user response:

Once the changes are resolved you need to add and commit them. Then the merge will be complete and you can push your code

  • Related