git push -u origin master
錯誤 1.
解決方法:
在./git目錄下有乙個conf檔案,開啟它,將裡面的
url =
替換成url = ssh:
錯誤[email protected]:~/test/libevent>git push -u origin master
warning: permanently added the rsa host key for ip address '192.30.255.112' to the list of known hosts.
enter passphrase for key '/home/gwwu/.ssh/id_rsa':
to ssh:
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'ssh:'
to prevent you from losing history, non-fast-forward updates were rejected
merge the remote changes before pushing again. see the 'note about
fast-forwards' section of 'git push --help' for details.
原因:是遠端伺服器與本地有衝突,不一致
解決方法:
先git push origin master,然後再次git push -u origin master
提交時常見的錯誤
1.output limit exceed 是超過輸出限制 ole 錯誤 提示你的程式產生了過多的輸出資訊,一般是由於死迴圈造成的。你的程式發生上述錯誤的主要原因是迴圈語句while scanf d n 產生的。2.memory limit exceed 所用記憶體超出限制 3.presentati...
寫留言板時常見錯誤
一 fatal error call to undefined function 函式不存在 二 syntax error,unexpected t string,expecting 嚴重語法錯誤 三 parse error syntax error,unexpected t variable in...
宣告一維陣列時常見錯誤
宣告和初始化時易出現的錯誤 原因是宣告和初始化一維陣列的語句是錯誤的,int 5 告訴編譯器陣列長度是5,但是只有給其中兩個元素賦初始值 static void main string args int arr1 new int 省略陣列長度 int arr2 省略 new 關鍵字 console....