AndroidStudio中项目提交到Github
程序员文章站
2022-03-07 12:52:36
...
1、设置忽略文件
project根目录下的.gitignore:
*.iml
.gradle
/local.properties
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
.DS_Store
/build
/captures
.externalNativeBuild
.idea
module目录下的.gitignore:
/build
*.iml
2、使用AndroidStudio将项目上传到github
①创建本地仓库
VCS->Import into Version Control->Create Git Repository...
②将项目提交到Github
VCS->Import into Version ->Share Project on Github
下一篇: C#异步编程几点需要注意的地方