赞
踩
因为每次打开vscode后,会自动扫描代码管理中的5000多个文件。
解决办法
如果项目中没有.gitignore文件,在项目中与src同级别的目录下,添加.gitignore文件(注意前面有个点)
文件内容如下图所示:
实现效果:
另外还有一个办法就是关闭Git,就在VSCode的设置中将Git给关闭掉。
关闭后的效果:
.gitignore文件常用配置:
.DS_Store node_modules/ /dist/ npm-debug.log* yarn-debug.log* yarn-error.log* /test/unit/coverage/ /test/e2e/reports/ selenium-debug.log # Editor directories and files .idea .vscode *.suo *.ntvs* *.njsproj *.sln
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。