美文网首页Android开发经验谈
Android studio-Git忽略文件.ignore模板

Android studio-Git忽略文件.ignore模板

作者: 温瑜 | 来源:发表于2016-07-13 21:24 被阅读1531次

管它呢,创建仓库先填这个!在往里面搞项目

    #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

本文作者:paradoxie
个人主页:谢盒盒的小黑屋,不止说技术
简书地址:简书主页,专注说技术
github地址:paradoxie
转载请注明出处,蟹蟹!
-------我的梦想真的是做一条咸鱼!

相关文章

网友评论

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

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