idea 上传本地springboot 项目到github

1.计算机本地安装git -->右键出现git bash(并记录git 的安装位置)

idea 上传本地springboot 项目到github_第1张图片

2.配置idea 的github

setting-->version control --->git-->将本地安装的git 地址复制到对应位置---》test进行测试

idea 上传本地springboot 项目到github_第2张图片

3.设置自己的github 账号密码

点击create api token--->填写github账号密码自动创建---》test测试连接 

idea 上传本地springboot 项目到github_第3张图片

 

4.idea创建springboot,使用快速创建需要连外网环境,创建后启动查看是否可以运行正常 

spdemo 项目名

idea 上传本地springboot 项目到github_第4张图片

5.创建本地git仓库,然后选择你要上传的项目==相当于 git init

idea 上传本地springboot 项目到github_第5张图片

查看到本地项目--》项目下对应多了.git 文件夹

idea 上传本地springboot 项目到github_第6张图片

 

并且idea 工具里项目里的所有类 文件都变色了

idea 上传本地springboot 项目到github_第7张图片

工具右下角出现git/master-->点击出现本地仓库主分支

idea 上传本地springboot 项目到github_第8张图片

工具栏中的vsc下多出了git 选项卡

idea 上传本地springboot 项目到github_第9张图片

选择不上传到github的文件或者文件夹,第一个为文件,第二个为文件夹

或者在commit的时候选择需要上传的东西或者不上传的东西

idea 上传本地springboot 项目到github_第10张图片

6.commit 到本地仓库 ---- 》类似git  commit

有2个地方可以commit-->第一种工具栏右侧类似分享图标的按钮如图鼠标移上去会汉字提示;第二种 cvs选项卡--.commit菜单点击就可以

idea 上传本地springboot 项目到github_第11张图片

选择需要提交的文件--》点击commit and push

idea 上传本地springboot 项目到github_第12张图片

7.push commits后进入页面--》点击Define remote进行配置

idea 上传本地springboot 项目到github_第13张图片

8.登陆github,创建远程仓库

idea 上传本地springboot 项目到github_第14张图片

复制ssh/https地址(远程仓库地址) 

idea 上传本地springboot 项目到github_第15张图片9 将远程仓库地址复制到Define remote

idea 上传本地springboot 项目到github_第16张图片

10点击push--》将本地代码上传到远程仓库上,==相当于git  push  远程仓库地址

idea 上传本地springboot 项目到github_第17张图片

 push成功  github页面上显示

idea 上传本地springboot 项目到github_第18张图片idea 上传本地springboot 项目到github_第19张图片

idea 上传本地springboot 项目到github成功 

你可能感兴趣的:(idea)