问题:今天在提交代码的时候出现了这个错误:
error: Pulling is not possible because you have unmerged files.
解决方法:
1. git add -u 2. git commit -m"注释" 3. git pull先将文件先存放到暂存区然后提交注释,再git pull不报错了
这种报错一般是以为有冲突的文件,需要解决冲突或者合并文件,解决完或者合并之后需要重新提交
注:参考:https://blog.csdn.net/wy01272454/article/details/72846365