赞
踩
思路:
1:使用Android studio新建好安卓项目
2:需要把项目创建成本地仓库
3:把项目add到本地仓库
4: .gitignore文件忽略不被提交到远程的文件类型
5:提交代码到本地仓库
6:使本地仓库与远程仓库互联
7:push到远程仓库
具体操作如下:
2(需要把项目创建成本地仓库)
3(把项目add到本地仓库)
4(.gitignore文件忽略不被提交到远程的文件类型)在控制台 open .gitignore
可参考https://github.com/github/gitignore/blob/main/Android.gitignore里的内容
5(提交代码到本地仓库)
6(使本地仓库与远程仓库互联)
git remote add origin https://gitee.com/fulele1/my-application.git
7(push到远程仓库)
git push -u origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。