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

1、问题
咱们在使用git指令的时候每每会出现以下错误。
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.


2、解决
首先分析这个错误是由于当前目录下.git文件中没有README.md的文件,所以须要用指令【git pull --rebase origin master】先拉取GitHub中的文件,在用【git push origin master】完成上传,除此以外指令【git push -u origin master】能够将空项目完成上传。
【注:若是但前目录下面有README.md文件下来也会有问题,应删除当前目录下的文件。】
github


3、结果
这样就完成了本地到GitHub的内容上传
ssh


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

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

相关文章
相关标签/搜索