Git發(fā)現(xiàn)git push origin master 報(bào)錯(cuò)的解決方法
git push origin master 報(bào)錯(cuò)的解決方法,分享給大家,具體如下:
錯(cuò)誤提示如下
[root@linux1 php]# git push -u origin master To git@github.com:kangvcar/Results-Systems--PHP.git ! [rejected] master -> master (fetch first) error: failed to push some refs to 'git@github.com:kangvcar/Results-Systems--PHP.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 merge the remote changes (e.g., hint: 'git pull') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
原因
GitHub遠(yuǎn)程倉庫中的README.md文件不在本地倉庫中。
解決方案1
我們只需加上 -f 參數(shù)即可push成功
[root@linux1 qimo]# git push -f warning: push.default is unset; its implicit value is changing in Git 2.0 from 'matching' to 'simple'. To squelch this message and maintain the current behavior after the default changes, use: git config --global push.default matching To squelch this message and adopt the new behavior now, use: git config --global push.default simple See 'git help config' and search for 'push.default' for further information. (the 'simple' mode was introduced in Git 1.7.11. Use the similar mode 'current' instead of 'simple' if you sometimes use older versions of Git) Counting objects: 53, done. Compressing objects: 100% (53/53), done. Writing objects: 100% (53/53), 1.35 MiB | 55.00 KiB/s, done. Total 53 (delta 8), reused 0 (delta 0) remote: Resolving deltas: 100% (8/8), done. To git@github.com:kangvcar/Results-Systems--PHP.git + fbe05e8...70b187d master -> master (forced update)
解決方案2
我們只需加上 --rebase 參數(shù)然后再重新 push 一次即可
[root@linux1 qimo]# git pull --rebase origin master [root@linux1 qimo]# git push -u origin master
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Centos搭建KMS(vlmcsd)激活服務(wù)器的步驟
Kms是微軟官方認(rèn)可的一種系統(tǒng)激活方式,這個(gè)激活方式主要用于企業(yè)批量激活計(jì)算機(jī)的windows和office,這篇文章主要介紹了Centos搭建KMS(vlmcsd)激活服務(wù)器的方法,需要的朋友可以參考下2023-07-07CentOS 6.3 Rsync客戶端與Win2003 cwRsyncServer服務(wù)端實(shí)現(xiàn)數(shù)據(jù)同步
這篇文章主要介紹了CentOS 6.3 Rsync客戶端與Win2003 cwRsyncServer服務(wù)端實(shí)現(xiàn)數(shù)據(jù)同步,需要的朋友可以參考下2015-07-07web.config(IIS)和.htaccess(Apache)配置
這些是我發(fā)現(xiàn)最有用的片段,/隨時(shí)間推移使用最多的片段。 他們處理諸如從查詢字符串,CORS標(biāo)頭重寫URL以及強(qiáng)制HTTPS重定向之類的事情2019-11-11Dell R710 服務(wù)器做Raid0與Raid5磁盤陣列的圖文教程
這篇文章主要介紹了Dell R710 服務(wù)器做Raid0與Raid5磁盤陣列的圖文教程,需要的朋友可以參考下2018-05-05nginx/apache/php隱藏http頭部版本信息的實(shí)現(xiàn)方法
有時(shí)候我們需要隱藏我們的服務(wù)器版本信息,防止有心人士的研究,更安全,這里介紹下在nginx/apache/php中如何隱藏http頭部版本信息的方法,有需要的朋友參考下吧2013-06-06Ubuntu移動(dòng)任務(wù)欄到底部的實(shí)現(xiàn)方式
在Ubuntu操作系統(tǒng)中,默認(rèn)的任務(wù)欄位置在屏幕左側(cè),本文介紹了兩種方法來將任務(wù)欄移動(dòng)到底部,方法一涉及使用終端命令,可能會出現(xiàn)架構(gòu)不支持的情況,方法二通過設(shè)置界面調(diào)整Dock的位置來實(shí)現(xiàn)任務(wù)欄的移動(dòng),具體步驟包括打開設(shè)置、選擇外觀選項(xiàng)2024-09-09