IDEA+GIT使用入门图文详解
程序员文章站
2022-06-27 14:38:18
一、准备1.提前安装好 git 的客户端git 的 msysgit 官网下载: https://git-scm.com/git 客户端 tortoisegit 官网下载: http://downloa...
一、准备
1.提前安装好 git 的客户端
git 的 msysgit 官网下载: https://git-scm.com/
git 客户端 tortoisegit 官网下载: http://download.tortoisegit.org/tgit/
2.关联 git 客户端
3.关联 github的账户,测试
二、分享本地项目到github
1.idea --> vcs --> import into version control --> share project on github
2 .填写 repository name,即仓库名。 private,可选,勾选后项目不可公开访问description,可选,项目描述
3 .添加项目文件
4 .添加gitignore文件
5 .添加后,后台处理
6.提交成功后,登录github查看。
三、同步本地项目修改
1.idea --> vcs -->commit
2.commit后,idea --> vcs --> git--> push
3.提交查看日志。
4.push成功后,登录github查看。
到此这篇关于idea+git使用入门详解的文章就介绍到这了,更多相关idea+git使用入门内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: Android项目刮刮奖详解(二)