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

一、问题
我们在使用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】

猜你喜欢

转载自www.cnblogs.com/future-dream/p/11027319.html