Android Studio设置上传github的忽略文件

要忽略的文件 
- .idea 文件夹 
- .gradle 文件夹 
- 所有的 build 文件夹 
- 所有的 .iml 文件 
- local.properties 文件

所以: 
跟目录的 
.gitignore

.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
.idea
*.iml
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

module目录下的.gitignore

/build
*.iml

原创文章 47 获赞 34 访问量 3万+

猜你喜欢

转载自blog.csdn.net/xige1995/article/details/80823719