Solve the problem of extremely slow commit when Idea uses git

When using idea to submit code to a local git repository, the submission speed may be particularly slow . Because it is a local submission, network reasons can be ruled out. Then it may be a computer performance problem. General productivity tools are not just changing. , Mainly various configurations and environments need to be re-built, so changing the computer is still costly for programmers.

Not much to say, let ’s take a look at the most common situation: the words Performing Code Analysis...
Insert picture description here appear , indicating that the idea is performing analysis before submitting the code. This process is generally very time-consuming for computers with poor performance. Then we It can be solved by simple settings on the submission page : as shown in the figure, just uncheck the checkmarks in front of the two options above. English meaning: • Perform code analysis: Refers to the code analysis before submission • Check TODO (Show ALL): If the code has //TODO comments, IDEA submission will prompt you whether you have completed the content in TODO.
Insert picture description here


Guess you like

Origin blog.csdn.net/weixin_45435048/article/details/109400328