美文网首页
git ignore配置

git ignore配置

作者: 红烧排骨饭 | 来源:发表于2016-11-25 16:47 被阅读0次
    #built application files
    *.apk
    *.ap_
    
    # files for the dex VM
    *.dex
    
    # Java class files
    *.class
    
    # generated files
    bin/
    gen/
    out/
    build/
    
    # Local configuration file (sdk path, etc)
    local.properties
    
    # Windows thumbnail db
    Thumbs.db
    
    # OSX files
    .DS_Store
    
    # Eclipse project files
    .classpath
    .project
    
    # Android Studio
    *.iml
    .idea
    
    # Local IDEA workspace
    .idea/workspace.xml
    
    # Gradle cache
    .gradle
    
    #NDK
    obj/
    
    #SVN
    .svn/
    

    相关文章

      网友评论

          本文标题:git ignore配置

          本文链接:https://www.haomeiwen.com/subject/cdhwpttx.html