suchen

Heim  >  Fragen und Antworten  >  Hauptteil

git忽略文件,.java文件怎么没被忽略?.gitignore文件怎么看?

# 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
proguard-project.txt

# Proguard folder generated by Eclipse
proguard/

# Intellij project files
*.iml
*.ipr
*.iws
.idea/
仅有的幸福仅有的幸福2813 Tage vor579

Antworte allen(3)Ich werde antworten

  • 阿神

    阿神2017-05-02 09:28:49

    你只忽略了java编译后的 *.class 文件,没有忽略 *.java

    Antwort
    0
  • 阿神

    阿神2017-05-02 09:28:49

    可以看一下廖雪峰的GIT博客中关于 文件忽略的讲解。
    特殊文件忽略

    Antwort
    0
  • 迷茫

    迷茫2017-05-02 09:28:49

    vim .gitignore 查看.gitignore文件
    如果你要忽略.java文件,需要加上 *.java

    Antwort
    0
  • StornierenAntwort