一次性成功:将IDEA中的项目传到github上

由于idea这个软件,对于项目管理来说特别的不方便,一个项目只有一个demo,如果我想对比以前做的demo,这就有点尬了,所以想着把项目传到github中,这样可以集中管理代码,查看方便!我查看了好多的博客,下面开干,大家坐稳了!

在这里插入图片描述

  1. 首先各位小可爱必须得有Git工具,如果没有大家出门左转下载:

等等门在这:https://git-scm.com/downloads

在这里插入图片描述
2. 然后单击Git Bash,输入命令:

在这里插入图片描述

$ git config –global user.name “Your Name”
$ git config –global user.email “email@example.com
用来设置用户名和邮箱

  1. 在IDEA中设置Git与github
    在这里插入图片描述
  • Git
    在这里插入图片描述
  • GitHub
    在这里插入图片描述
  1. 创建Git仓库
    在这里插入图片描述
    默认的就是自己的项目名
    ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200419222055844.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80Mjg5MzA4NQ==,size_16,color_FFFFFF,t_70#pic_center)
然后项目中的文件就会全部变红

​

  ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200419222306634.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80Mjg5MzA4NQ==,size_16,color_FFFFFF,t_70#pic_center)
  1. VCS–》Git–》Add(注意选中项目)
    在这里插入图片描述
然后就会变绿

​

  ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200419222606687.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80Mjg5MzA4NQ==,size_16,color_FFFFFF,t_70#pic_center)
  ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200419222713758.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80Mjg5MzA4NQ==,size_16,color_FFFFFF,t_70)
  ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200419222743536.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80Mjg5MzA4NQ==,size_16,color_FFFFFF,t_70)
  ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200419222833510.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80Mjg5MzA4NQ==,size_16,color_FFFFFF,t_70)
  然后就会弹出

在这里插入图片描述
这样就上传成功了,下面我们进入github搂一眼:
在这里插入图片描述

在这里插入图片描述