当前位置:   article > 正文

清除git本地缓存和gitigore模板_git清除本地缓存

git清除本地缓存

一、清除git本地缓存

首先,.gitignore 只能忽略那些没有被追踪(track)的文件,且git存在本地缓存。
如果需要过滤文件之前已纳入了版本管理,那么除了修改ignore文件,还要清除本地缓存。

git rm -r --cached .
git add .
git commit -m "update .gitignore"

  • 1
  • 2
  • 3
  • 4

二、ignore文件模板

1. 后端

# Compiled class file
*.class

# Log file
*.log
*.imi
*.lst

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

.idea
*.iml
out
.settings/
.project
.classpath
/*/target/
logs/
.txlcn

# ignore test file
**/src/test/

  • 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
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39

2. 前端

.DS_Store
# node_modules 正常工作时需要过滤该文件
/dist

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

# Log files
npm-debug.log*
yarn-debug.log*
yarn-eroor.log*
pnpm-debug.log*

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

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

闽ICP备14008679号