当前位置:   article > 正文

git 忽略不必要提交的文件及node清楚缓存_git提交文件中 如何忽略清理缓存

git提交文件中 如何忽略清理缓存

创建.gitignore

在根目录下创建.gitignore文件

打开git 输入 touch .gitignore 生成.gitgnore文件

在文件中输入你想要忽略的文件

.DS_Store
node_modules
/dist


# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.js

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
node_modules


## node.js清除缓存
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
npm cache clean -f
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/613610
推荐阅读
相关标签
  

闽ICP备14008679号