标签:
出现The following untracked working tree files would be overwritten by checkout
和 Please move or remove them before you can merge时的解决方案
git clean -d -fx ""
其中
x -----删除忽略文件已经对git来说不识别的文件
d -----删除未被添加到git的路径中的文件
f -----强制运行
git冲突Please move or remove them before you can
标签:
原文地址:http://my.oschina.net/u/2292000/blog/404398