git踩坑綜合症

使用git真的是讓我受盡了折磨,不寫個集合都以爲對不起本身踩過的那些坑啊git

  1. 錯誤一:failed to push some refs to git
    $ git push -u origin mastergithub

    To git@github.com:yangchao0718/cocos2d.gitfetch

    ! [rejected]        master -> master (non-fast-forward)

    error: failed to push some refs to 'git@github.com:yangchao0718/cocos2d.gitcode

    hint: Updates were rejected because the tip of your current branch is behinip

    hint: its remote counterpart. Integrate the remote changes (e.g.rem

    hint: 'git pull ...') before pushing again.it

    出現錯誤的主要緣由是github中的README.md文件不在本地代碼目錄中ast

    能夠經過以下命令進行代碼合併【注:pull=fetch+merge]date

    git pull --rebase origin master下載

    執行上面代碼後能夠看到本地代碼庫中多了README.md文件

    此時再執行語句 git push -u origin master便可完成代碼上傳到github

2.錯誤二:You have not concluded your merge. (MERGE_HEAD exists)
Git本地有修改如何強制更新
本地有修改和提交,如何強制用遠程的庫更新更新。我嘗試過用git pull -f,老是提示 You have not concluded your merge. (MERGE_HEAD exists)。
我須要放棄本地的修改,用遠程的庫的內容就能夠,應該如何作?傻傻地辦法就是用心的目錄從新clone一個,正確的作法應該是:

git fetch --allgit reset --hard origin/mastergit fetch 只是下載遠程的庫的內容,不作任何的合併git reset 把HEAD指向剛剛下載的最新的版本

相關文章
相關標籤/搜索