发表于: 2017-03-21 00:20:46
1 1292
conflict解决方案:
branch -a 查看分支
git checkout develop 进入分支
git pull origin develop 出现conflict
git fetch --all 合并
git pull origin develop 如果进入编辑页面,E进去,写merge 然后退出
出来之后分支状态 develop | merging
git status 看看有没有变动
find stream 去看有没有 ====> 这种东西
git commit -m "LAB-95, XXXXXXXXX"
git push origin develop
评论