git .gitignore不会忽略以前跟踪的文件

时间:2015-11-14 21:29:20

标签: android git gitignore

我有一个Android工作室项目(从eclipse导入)。在我导入到Andorid工作室后,我做了一个初始提交,忘了为Android Studio的结构添加新的.gitignore文件。

现在git不会忽略构建,.gradle文件等。

我试过了

git rm -r --cached .
git add .
git commit -m "fixed untracked files"

技巧,但是当我写git status时,所有文件都显示为已删除,而在github中,它们显示为已更改。

以下是我的.gitignore

.gradle
/local.properties
/.idea/workspace.xml
.DS_Store

# Created by http://gitignore.io

### Android ###
# built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# generated files
bin/
gen/

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

# Eclipse project files
.classpath
.project    

# Proguard folder generated by Eclipse
proguard/

# Proguard folder generated by Intellij
proguard_logs/

# Intellij project files
*.iml
*.ipr
*.iws
.idea/

adt-bundle-windows-x86_64/

### Linux ###
.*
!.gitignore
!.git*
*~


### IntelliJ ###
*.iml
*.ipr
*.iws
.idea/

### Gradle ###
# Exclude Folder List #
.gradle/
build/

/*/out
/*/*/build
/*/*/production
*.iws
*.ipr
*~
*.swp

我仍然可以在我的构建和.gradle文件夹等中看到所有文件。

有什么建议吗?

3 个答案:

答案 0 :(得分:7)

git clean -xf删除与.gitignore匹配的所有文件。

答案 1 :(得分:2)

  1. git rm --cached "xxx"
  2. git commit -m ""
  3. git reset HEAD -- "xxx"
  4. git commit -m ""(更新回购)

答案 2 :(得分:0)

也许,您需要使用以下语法:

**/build