美文网首页
AS-Git忽略文件.ignore模板

AS-Git忽略文件.ignore模板

作者: Zach_C | 来源:发表于2016-07-22 17:18 被阅读205次
#built application files  
    *.apk  
    *.ap_  

    # files for the dex VM  
    *.dex  

    # Java class files  
    *.class  

    # generated files  
    bin/  
    gen/  
    out/  
    build/  
    #  build/  忽略所有的 build/ 目录下文件  
    #  /build  只忽略此目录下build文件,子目录的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/  

    .settings/  
    *.properties  

    # Log Files
    *.log

相关文章

网友评论

      本文标题:AS-Git忽略文件.ignore模板

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