VScode's method of soaring cpu occupancy rate and fan spinning due to git

There is a bug in vs code, it will automatically turn on the drive to scan git, and it is not limited to this directory, but the entire drive letter. So it needs to be added in .vscode -> settings.json

{
    
    
	"git.enabled": false
}

Guess you like

Origin blog.csdn.net/u014126257/article/details/107785171