日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

git学习小结(未完待续)

發(fā)布時間:2025/4/16 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 git学习小结(未完待续) 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

錯誤一

Updates were rejected because the remote contains work that you do

! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://github.com/icessun/baiduWebShool.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 pull origin master 抓取遠端的內容 $ git push origin master 重新推送到遠程倉庫

錯誤二

Your local changes to the following files would be overwritten by checkout:

Administrator MINGW32 /d/blog (dev) $ git checkout master error: Your local changes to the following files would be overwritten by checkout:.idea/workspace.xml Please commit your changes or stash them before you switch branches. Aborting

錯誤的原因是:直接在遠程倉庫包操作了,修改了github上面的東西,相當于服務器上面的東西,而本地沒有修改,當想改變分支的時候,出現(xiàn)了改變分支的時候會重寫文件,所以必須把修改的提交到版本庫里面。或者是隱藏在你切換分支之前。


解決辦法:

  • 拋棄本地的修改,回到上一個版本

    git reset --hard 然后,切換你的分支 git checkout master

轉載于:https://www.cnblogs.com/linewman/p/9918382.html

總結

以上是生活随笔為你收集整理的git学习小结(未完待续)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。