2016-05-08 123 views
0

我剛開始使用git,我創建了.gitignore文件後,我做了一個java文件中的更改,我發現git不忽略忽略的文件。例如: enter image description hereAndroid工作室 - gitignore文件

只有Logger.java假定被提交,而其他兩個文件不是。

這是我的.gitignore文件:

# Built application files 
*.apk 
*.ap_ 

# Files for the Dalvik VM 
*.dex 

# Java class files 
*.class 

# Generated files 
bin/ 
gen/ 
out/ 

# Gradle files 
.gradle/ 
build/ 

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

# Proguard folder generated by Eclipse 
proguard/ 

# Log Files 
*.log 

# Android Studio Navigation editor temp files 
.navigation/ 

# Android Studio captures folder 
captures/ 

# Intellij 
*.iml 

# Keystore files 
*.jks 
+0

我想你把你的gitignore文件放在這裏:https://www.gitignore.io/api/android但你從來沒有提到要忽略這兩個文件 –

回答

0

我覺得你把你的gitignore文件位置:gitignore.io/api/android但你從來不提忽略這兩個文件...
也許你應該在加上這兩條線你的.gitingore

.idea/workspace.xml 
.idea/misc.xml 

如果你已經提交了你的文件,你可能必須從你的git中刪除這些文件。
看到這個帖子:Cannot ignore .idea/workspace.xml - keeps popping up

+0

我個人使用這些爲我的android studio忽略文件: #Android Studio/IntelliJ IDEA的 * .iws .idea /庫 .idea/tasks.xml .idea/vcs.xml .idea/workspace.xml .idea/misc.xml .idea/gradle.xml – Reyske

+0

我只是例如,給這些文件,有時出現在15-20個文件之間,我不能將它們全部添加到.gitignore –

0

您需要的.idea添加到忽略列表:

# Add it with the/at the end (since you want to ignore all the folder) 
.idea/ 

# Now remove the files you have already added to the repo 
git rm --cached .idea/* 

這些文件是由JetBrain產品所產生的(在你的情況下,機器人工作室IDE),你必須標記文件夾被忽略。

+0

感謝您的答案,但這也不工作 –