1 常用模板
# Built application files
*.apk
*.ap_
# Files for the ART/Dalvik VM
*.dex
# Java class files
*.class
# Generated files
bin/
gen/
out/
# Gradle files
.gradle/
build/
# Local configuration file (sdk path, etc)
local.properties
# Proguard folder generated by Eclipse
proguard/
# Log Files
*.log
# Android Studio Navigation editor temp files
.navigation/
# Android Studio captures folder
captures/
# Intellij
*.iml
.idea
# Keystore files
*.jks
# MacOS
.DS_Store
.externalNativeBuild
.cxx
2 build/ 和 /build 区别
build/ 整个项目的所有build文件都被忽略 (测试 build = build/)
/build 当前路径的build被忽略
3 加入了忽略代码不起作用,那是因为你忽略的文件已经被git管理了,只要脱离管理就可以忽略
比如常见的情况 .idea文件夹 每次一提交代码都有他 好讨嫌!
android stuido 底部 有个terminal 打开
输入
git rm --cached -r .idea
然后commit提交
在根目录.gitignore中加入
.idea
然后同步下项目,看看.idea是不是变色了
最后push, 远程仓库 .idea 没了
网友评论