I ran git pull origin and now I have some issues with merge my branch with a master.
Here’s what I did:
- commit all changes on my branch
- git checkout master
- git pull origin master
- git checkout my branch
- git merge master
- open ‘project.pbxproj’ and removed all needed markers
- open other conflict file and removed needed markers
- git add for both files and git commit
Is this correct?
Yes, this is a perfectly acceptable way to resolve merge conflicts. I’ll simply note that you don’t need a local
masterbranch — you can omit steps 2, 4 and 5.