项目提交到github的忽略文件
Posted 碎冰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了项目提交到github的忽略文件相关的知识,希望对你有一定的参考价值。
1.在工作区的.gitignore文件中配置如下:
# Built application files
*.apk
*.ap_
# Files for the Dalvik VM
*.dex
# Java class files
*.class
# Generated files
bin/
gen/
# Gradle files
.gradle/
build/
/*/build/
# Local configuration file (sdk path, etc)
local.properties
# Proguard folder generated by Eclipse
proguard/
# Log Files
*.log
2. 在项目的.gitignore文件中配置如下:
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
以上是关于项目提交到github的忽略文件的主要内容,如果未能解决你的问题,请参考以下文章
VS2017上传项目到github,在github中没有项目文件,只有两个忽略文件。