一、清除git本地缓存
首先,.gitignore 只能忽略那些没有被追踪(track)的文件,且git存在本地缓存。
如果需要过滤文件之前已纳入了版本管理,那么除了修改ignore文件,还要清除本地缓存。文章来源地址https://www.toymoban.com/news/detail-508992.html
git rm -r --cached .
git add .
git commit -m "update .gitignore"
二、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/
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?
文章来源:https://www.toymoban.com/news/detail-508992.html
到了这里,关于清除git本地缓存和gitigore模板的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!