通过IDEA上传代码到github

1.配置git环境

  • 去git官网https://git-scm.com/下载git工具
  • 下载完成后,运行git bash,设置user.name和user.email两个参数
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"
  • 使用下面语句生成密钥文件,不需要密码,一直按enter键
ssh-keygen -t rsa -C "邮箱"
  • 将生成的公钥文件(用户文件夹->.shh->id_rsa.pub)内容下来,添加到github账户的ssh中(点击头像->settings>ssh and gpg keys)。

2.设置IDEA

  • 打开Settings->Version Control->Github设置
  • 在Auth Type中选择Password,并输入github用户名和密码,点击test验证
  • 点击VCS->Import into Version Control->share project on github
  • 根据自己的需要,选择需要分享的文件,最后点击share
  • 大功告成,最后检查自己的github账号中是否多了个repository
  • 若以后添加了新的文件,需要Commit后通过VSC->Git->push再push到github上

你可能感兴趣的:(通过IDEA上传代码到github)