一直以来没有去建立自己的代码库,最近发现这样不行,不算一个合格的程序员,所以最近开始吧自己以前的一些项目代码上传,一是保存代码,毕竟存在自己电脑或者云盘也不是很好的一个选择。(账号很早申请了就是没用)
首先就是安装git了,这个百度就行。因为以前一直没用过git所以难免会有错,
第一步:在码云上新建项目,不详细描述
第二步:git init 在本地新建一个.git文件夹(就是所说的建立本地git仓库)
可以先用查看远程库信息:
第四部:$ git pull origin master,这里是将远程仓库的README文件pull下来,因为在码云上新建项目就已经生成README文件了,就不用本地去touch README和git add README了。
第五步:git add . 将所有的代码add一下
第六步:git commit -m 'first commit' ,进行注释
第七部:$ git push origin master 将项目上传到远程仓库
参考教程:https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/00150154460073692d151e784de4d718c67ce836f72c7c4000
犯的错
Git常见错误与操作:error: src refspec master does not match any解决办法
fatal: Could not read from remote repository.的解决办法
git:fatal the current branch master has no upstream branch
https://www.cnblogs.com/daemon369/p/3204646.html
1.使用强制push的方法:
$ git push -u origin master -f
领取专属 10元无门槛券
私享最新 技术干货