问题:
 
git pull 报错
 
The following untracked working tree files would be overwritten by checkout
 
fix:
 
本地修改和git上冲突,清理到本地的这个文件修改
 
git clean -f <file_name>
 
注意:千万不能盲目直接
 
git clean -d -fx "",本地的所有改动全都清光光,全部重来!
 
附:
 
https://blog.csdn.net/lisulong1/article/details/78910727