Android Studio Git 使用总结

Stella981
• 阅读 743

#本地项目上传到git服务器 ##配置环境

如图所示:在Setting下,搜索Git,在Path to Git executable设置Git的git.exe路径 Android Studio Git 使用总结

##测试Git是否配置成功

点击当前的Test按钮,弹出对话框 Git executed successfully以及Git 版本号说明配置成功 Android Studio Git 使用总结

##将项目变成git项目

依次点击VCS——Import into Version Control——Create Git Repository 在弹出的窗口中选择你的本地项目,操作完在项目目录下就有了.git文件夹 Android Studio Git 使用总结

##根据不同Git库(oschina,github)创建项目

1.在oschina或者github创建好自己的项目(由于不同网站有不同创建提示,不再赘述)
2.用git bush执行:git remote add origin <项目地址>
3.根据提示输入帐号以及密码

##提交代码

用git bush执行:git push -u origin master
如果提交失败.请先执行git pull origin master在执行上面语句
(在服务器创建项目的时候.会生成一些本地库没有的文件,所以要先down下来然后在把本地项目push上去才行...)

#从git服务器获取项目代码

1.依次点击VSC——Checkout from Version Control——Git
2.在弹出的的窗口中输入git地址,本地的保存目录,就可以了。
3.接着一系列的设置,项目就同步到本地了。

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
前端尾随者 前端尾随者
2年前
sourceTree 添加 ssh key 方法
1.使用git客户的生成公私钥:id\rsa、id\rsa.pub1.1设置Git的username和email:$gitconfigglobaluser.name"xxx"$gitconfig\globaluser.email"xxx.mail@xxx.com"1.2.生成SSH密钥过程:1.2.1.检查是不是已经存在密钥(
待兔 待兔
4个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Wesley13 Wesley13
3年前
11月14日任务
一、安装Git  \如果你已经安装好了Git,可以忽略这一步  CentOS安装Git:yuminstallgit  查看Git版本信息:gitversion  配置Git用户信息:gitconfigglobaluser.name"woider"gitconfigglob
Wesley13 Wesley13
3年前
GIT命令大全
Git命令大全Git最小配置某账号下所有的Git仓库都有效gitconfigglobaluser.name'您的名称'gitconfigglobaluser.email'您的Email'只对当前Git仓库有效gitconf
Stella981 Stella981
3年前
Linux上安装git并在gitlab上建立对应的项目
1.CentOS上面安装git我所用的CentOS为CentOS6.5,其他版本没有测试。yuminstallgit 安装之后查看git版本信息gitversion2.配置git信息gitconfigglobaluser.name"yourname"gitconfigglobaluser.em
Stella981 Stella981
3年前
Git基本配置
Git配置安装yuminstallgit全局配置设置提交用户名gitconfigglobaluser.name"leoxu"设置提交邮箱gitconfiggl
Stella981 Stella981
3年前
Git 实战教程
1.Git配置使用Git的第一件事就是设置你的名字和email,这些就是你在提交commit时的签名,每次提交记录里都会包含这些信息。使用gitconfig命令进行配置:​$gitconfigglobaluser.name"ilimhumar"$gitconfigglobal
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable