用git push代碼到遠程倉庫的時候出現錯誤

error:failed to push some refs to ...git

Dealing with 「non-fast-forward」 errorsfetch

From time to time you may encounter this error while pushing:this

$ git push origin master spa

To ../remote/ rem

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

error: failed to push some refs to '../remote/' io

To prevent you from losing history, non-fast-forward updates were rejectedevent

Merge the remote changes before pushing again.  See the 'non-fast forward'ast

section of 'git push --help' for details.date

 

 

2. 先把git的東西fetch到你本地而後merge後再push

$ git fetch

$ git merge

這2句命令等價於

$ git pull 

相關文章
相關標籤/搜索