問題解決 <<
Previous push衝突
在push的時候總會遇到相互衝突的時候而產生類似下面的文字提示
error: failed to push some refs to 'https://github.com/mdecourse/cdaw13-1'
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再git push即可
問題解決 <<
Previous