Some untracked working tree files would be overwritten by Pull

在IntellJ使用git更新文件的时候报这个错误

Pull failed
Some untracked working tree files would be overwritten by Pull.
Please move or remove them before you can Pull. View them

解决办法:

Git clean -d -fx "报错的文件或文件夹"
其中
-x -----删除忽略文件已经对git来说不识别的文件
-d -----删除未被添加到git的路径中的文件
-f -----强制运行

你可能感兴趣的:(IDE)