降级新版 idea 后,用 Git pull 时呈现报错:
Your local changes will be overwritten by merge.Commit, stash, or revert them to proceed.
解决方案:
在 IDEA terminal 中间接运行如下命令将其删除
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
IDEA 提醒:rm ‘.DS_Store’,此时,咱们再 pull 曾经胜利了。