vscode git提交时会自动把node_modules和 dist文件夹内文件上传至git中
在文件.gitignore里输入代码
node_modules/ dist/
如有其他需要忽略的目录,直接换行添加即可
示例:
如果没有.gitignore文件
在vscode命令行输入
touch .gitignore
生成gitignore文件
vscode git提交时会自动把node_modules和 dist文件夹内文件上传至git中
node_modules/ dist/
如有其他需要忽略的目录,直接换行添加即可
在vscode命令行输入
touch .gitignore
生成gitignore文件