因为这个问题,我恐怕累计已经浪费了我七八个小时。真的好烦,这次终于把步骤完全弄会了。现在就来记录怎么使用Idea来提交新创建的项目到GitHub上。
参考地址:git上传本地Idea项目
1.创建本地Git仓库
点击下面的红色按钮后,将项目名添加到本地仓库。
VCS-Import into Version Control - Create Git Repository
2.提交代码到git
右击项目名,Git ----add 。这步相当于在添加。
3.在GitHub上创建仓库
4.在本地项目下开启git bash 命令
输入
git remote add origin https://github.com/hairdryre/XXXXXX.git
git add . 出现警告,那就对了!
git commit -m "init project"
git push -u origin master