即使我添加了build / to .gitignore,Git也不会忽略/ build / intermediates / files

时间:2015-06-29 20:59:31

标签: android git github

我正在android studio中进行android开发,我试图忽略所有/ build /文件,但它无法正常工作。这是我目前的.gitignore文件

# built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# built native files
*.o
*.so

# generated files
bin/
gen/

# Ignore gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Eclipse Metadata
.metadata/

# Mac OS X clutter
*.DS_Store

# Windows clutter
Thumbs.db

# Intellij IDEA (see https://intellij-support.jetbrains.com/entries/23393067)
.idea/workspace.xml
.idea/tasks.xml
.idea/datasources.xml
.idea/dataSources.ids

.*
!/.gitignore

但是当我执行git状态时,仍会显示构建文件

1 个答案:

答案 0 :(得分:13)

在将它们添加到.gitignore文件之前,它们可能会被添加到repo 中。您应该使用git rm --cached filename.ext从repo中删除它们,然后提交(以及.gitignore文件)。