上传项目到gitHub

Posted codegeekgao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上传项目到gitHub相关的知识,希望对你有一定的参考价值。

上传项目到gitHub

创建好后开始提交本地项目代码如图
技术分享图片

选中VCS选中图中的按钮如图所示
技术分享图片

然后再选中Src点中add按钮如图所示

技术分享图片

然后点中commit Directory后
打开终端进行项目根目录下键入以下 命令:
git remote add origin [email protected]:codegeekgao/Test.git(这里我写的自己的github地址,这里可以改成你自己的github项目)
git push -u origin master //将本地仓库的东西提交到地址是origin的地址,master分支下 

可能出现的报错异常

提示出错信息:fatal: remote origin already exists. 解决办法如下:


然后再次输入git remote add origin [email protected]:codegeekgao/Test.git
git push -u origin master
然后会报以下错误:

! [rejected] master -> master (fetch first)
error: failed to push some refs to '[email protected]:qzmly100/repository-.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

这是因为:
远程分支上存在本地分支中不存在的提交,往往是多人协作开发过程中遇到的问题,可以先fetch再merge,也就是pull,把远程分支上的提交合并到本地分支之后再push。
如果你确定远程分支上那些提交都不需要了,那么直接git push origin master -f,强行让本地分支覆盖远程分支.

以上是关于上传项目到gitHub的主要内容,如果未能解决你的问题,请参考以下文章

如何将本地代码上传到github

IDEA 本地项目如何上传到github

如何更新github代码到本地

用Git上传项目到github

通过命令行上传代码到GitHub

使用Git上传项目代码到github