天天看點

git .gitignore 不起作用的問題

在項目下添加了.gitignore 但添加的規則卻沒有起作用,通常是因為沒有清除本地緩存導緻的。這個時候隻要清除了本地緩存就好了。

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

.gitignore 檔案示例

# Lines that start with '#' are comments.
# IntelliJ IDEA Project files
.idea
*.iml
*.ipr
*.iws
out
 
# Eclipse Project files
.classpath
.project
.settings/
 
bin/
gen/
local.properties
 
.DS_Store
Thumbs.db
 
*.bak
*.tem
*.temp
#.swp
*.*~
~*.*