现在位置: 首页 > git
+0°

Intellij IDEA 初学入门图文教程(八) —— IDEA 在提交代码时 Performing Code Analysis 卡死

2023年07月05日 15:23:43 IntelliJ IDEA  ⁄ 共 308字 暂无评论 ⁄ 被围观 1,554次
​在使用 IDEA 开发过程中,提交代码时常常会在碰到代码中的 JS 文件时卡死,进度框上显示 Performing Code Analysis,如图: ​ 原因是 IDEA 工具默认提交代码时,分析代码功能是打开的,需要通过配置关闭下就可以了。 操作步骤:File --》Settings --》Version Control --》Commit --》去掉 Analyze code 的勾 --》点击确定关闭窗口。 ​ 同理:如果不想检查 TODO 代码,也可以同时去掉下面的打勾。 再次尝试...
阅读全文
+0°

Your local changes to the following files would be overwritten by merge: .DS_Store

2022年03月24日 19:10:00 错误警告  ⁄ 共 1015字 暂无评论 ⁄ 被围观 1,973次
GIT 代码管理时,在合并分支代码过程中,报如下错误信息,导致代码无法合并。 Your local changes to the following files would be overwritten by merge: .DS_Store bonc-base-common/.DS_Store bonc-base-common/src/.DS_Store bonc-base-common/src/main/.DS_Store bonc-base-common/src/main/java/.DS_Store bonc-base-common/src/main/java/com/.DS_Store bonc-module-system/.DS_Store bonc-module-system/src/.DS_S...
阅读全文