Git發(fā)現(xiàn)git push origin master 報錯的解決方法
更新時間:2017年11月02日 11:29:59 作者:Kangvcar
本篇文章主要介紹了Git發(fā)現(xiàn)git push origin master 報錯的解決方法,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
git push origin master 報錯的解決方法,分享給大家,具體如下:
錯誤提示如下
[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遠程倉庫中的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
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
CentOS 6.3 Rsync客戶端與Win2003 cwRsyncServer服務端實現(xiàn)數(shù)據(jù)同步
這篇文章主要介紹了CentOS 6.3 Rsync客戶端與Win2003 cwRsyncServer服務端實現(xiàn)數(shù)據(jù)同步,需要的朋友可以參考下2015-07-07web.config(IIS)和.htaccess(Apache)配置
這些是我發(fā)現(xiàn)最有用的片段,/隨時間推移使用最多的片段。 他們處理諸如從查詢字符串,CORS標頭重寫URL以及強制HTTPS重定向之類的事情2019-11-11Dell R710 服務器做Raid0與Raid5磁盤陣列的圖文教程
這篇文章主要介紹了Dell R710 服務器做Raid0與Raid5磁盤陣列的圖文教程,需要的朋友可以參考下2018-05-05nginx/apache/php隱藏http頭部版本信息的實現(xiàn)方法
有時候我們需要隱藏我們的服務器版本信息,防止有心人士的研究,更安全,這里介紹下在nginx/apache/php中如何隱藏http頭部版本信息的方法,有需要的朋友參考下吧2013-06-06