1.双方修改引起如下问题。
error: Pull is not possible because you have unmerged files.
提示:请在工作区改正文件,然后酌情使用 'git add/rm <文件>' 命令标记
提示:解决方案并提交。
fatal: Exiting because of an unresolved conflict.
git pull
未合并的路径:
(使用 "git add <文件>..." 标记解决方案)
双方修改: app.js
已经提示使用git add来标记。
2.git add app.js
要提交的变更:
修改: app.js
3.git push app.js -m "xxxx"
fatal: 在合并过程中不能做部分提交。
使用-i参数,git push app.js -i -m "xxxx"
4.git commit 然后push就OK啦