首页 > 其他 > 详细

git在使用push指令的时候产生的错误

时间:2019-06-15 14:04:58      阅读:130      评论:0      收藏:0      [点我收藏+]

一、问题
我们在使用git指令的时候往往会出现如下错误。

$ git push -u origin master
To https://github.com/pzq7025/ss-fly.git
 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to https://github.com/pzq7025/ss-fly.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.


二、解决
首先分析这个错误是因为当前目录下.git文件中没有README.md的文件,因此需要用指令【git pull --rebase origin master】先拉取GitHub中的文件,在用【git push origin master】完成上传,除此之外指令【git push -u origin master】可以将空项目完成上传。


三、结果
这样就完成了本地到GitHub的内容上传
技术分享图片


四、总结
git在刚开始使用的时候会遇到很多问题,但是基本的思想就是:
1.用指令【ssh-keygen -t  rsa -C "注册邮箱"】建立秘钥
2.将秘钥和GitHub连接
3.创建本地git【git init】
4.获取连接对象【git remote add origin [git的https位置]】

5.完成git上传【git push origin  master】

git在使用push指令的时候产生的错误

原文:https://www.cnblogs.com/future-dream/p/11027319.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!