1.切换到master主分支上
git checkout master
2.将master更新的代码pull到本地
git pull
3.切换到自己的分支上
git checkout branchName
4.合并master到自己的分支
git merge master
5.用idea或者sublime text解决冲突
Git用<<<<<<<,=======,>>>>>>>标记分离不同分支的内容,将不需要的部分删掉即可解决冲突。
6.add、commit
git add . git commit -m "conflict all fixed"
7.将自己分支的代码提交到远程
git push origin branchName