分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 代码编程

上传项目到gitHub

发布时间:2023-09-06 02:13责任编辑:沈小雨关键词:暂无标签

上传项目到gitHub

创建好后开始提交本地项目代码如图

选中VCS选中图中的按钮如图所示

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

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

可能出现的报错异常

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


然后再次输入git remote add origin git@github.com:codegeekgao/Test.git
git push -u origin master
然后会报以下错误:

! [rejected] master -> master (fetch first)error: failed to push some refs to 'git@github.com:qzmly100/repository-.git'hint: Updates were rejected because the remote contains work that you dohint: not have locally. This is usually caused by another repository pushinghint: to the same ref. You may want to first integrate the remote changeshint: (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

原文地址:https://www.cnblogs.com/codegeekgao/p/9572013.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved