Git建立本地仓库并上传到Gitee的详细步骤
电脑安装git客户端、注册github账号并登陆
到本地项目文件夹右键选择gitbashhere
输入个人信息(代码提交者)
gitconfig--globaluser.name"xxxx" gitconfig--globaluser.emailxxxxx@qq.com
在本地项目目录创建本地仓库
gitinit
输入命令后项目目录会有一个隐藏的.git文件夹
上传所有代码到本地仓库
gitadd. (注意add后面有个点,与add之间有一空格)
这样就把代码上传到本地仓库了
gitcommit-m"initialcommit"
在gitee上新建项目,复制https://gitee.com/xxx/xx.git地址
关联本地仓库并上传代码
gitremoteaddoriginhttps://github.com/Yanyf765/hr_sys.git(上步骤复制的地址) gitpushoriginmaster
报错:
执行命令:
gitpulloriginmaster--allow-unrelated-histories
git在pull或者合并分支的时候有时会遇到这个界面。可以不管(直接下面3,4步),如果要输入解释的话就需要:
1.按键盘字母i进入insert模式
2.修改最上面那行黄色合并信息,可以不修改
3.按键盘左上角"Esc"
4.输入":wq",注意是冒号+wq,按回车键即可
之后就可以成功的pull,push了
提交到远程报错,如下:
srcrefspecmasterdoesnotmatchany
原因:
本地仓库为空
解决方法:
使用如下命令添加文件;
$gitaddadd.phpaddok.phpconn.phpdel.phpedit.phpeditok.phpftpsql.sqlindex.php $gitcommit-m"initfiles"
之后在push过程中出现如下错误:
$gitpush-uoriginmaster
Warning:PermanentlyaddedtheRSAhostkeyforIPaddress'xx.xx.xxx.xxx'tothelistofknownhosts.
Togit@github.com:hahaha/ftpmanage.git
![rejected] master->master(fetchfirst)
error:failedtopushsomerefsto'git@github.com:hahahah/ftpmanage.git'
hint:Updateswererejectedbecausetheremotecontainsworkthatyoudo
hint:nothavelocally.Thisisusuallycausedbyanotherrepositorypushing
hint:tothesameref.Youmaywanttofirstintegratetheremotechanges
hint:(e.g.,'gitpull...')beforepushingagain.
hint:Seethe'Noteaboutfast-forwards'in'gitpush--help'fordetails.
提示使用gitpull之后在push
使用如下命令解决:
$gitpull--rebaseoriginmaster warning:nocommoncommits remote:Countingobjects:3,done. remote:Total3(delta0),reused0(delta0),pack-reused0 Unpackingobjects:100%(3/3),done. Fromgithub.com:hahah/ftpmanage *branchmaster->FETCH_HEAD *[newbranch]master->origin/master First,rewindingheadtoreplayyourworkontopofit... Applying:initfiles
继续push,成功。
总结
到此这篇关于Git建立本地仓库并上传到Gitee的文章就介绍到这了,更多相关Git建立本地仓库内容请搜索毛票票以前的文章或继续浏览下面的相关文章希望大家以后多多支持毛票票!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。