Pull is not possible because you have unmerged files解决方法
2014年3月2日
没有评论
最近在项目中添加了一个 SDWebImage 开源组件,然后运行 pod install的时候,结果出现了Pull is not possible because you have unmerged files 错误提示。
删除然后重新安装,依然报错。解决方法如下:
pod repo remove master
pod setup
如果仍然没有效果,那么再清理下缓存
rm -rf ~/.coocapods/
pod setup
我这边只进行了上面的第一步就已经正常了。