終於稍微會一點git了,所以趕緊把遇到的問題記錄下來:
1、warning: lf will be replaced by crlf
windows中的換行符為 crlf, 而在linux下的換行符為lf,所以在執行add . 時出現提示,解決辦法:
$ rm -rf
.git // 刪除.git
$ git config --
global core.autocrlf false
//禁用自動轉換
然後重新執行:
$ git init
$ git add .
2、fatal: remote origin already exists$ git remote rm origin
$ git remote add origin
然後再輸入專案位址 就不會報錯了。
3、error:failed to push som refs to …….
輸入$ git push origin master時出現出錯資訊;
解決方法:
$ git pull origin master //先把遠端伺服器github上面的檔案拉下來
$ git push origin master
重新輸入
$ git remote add origin 專案位址
5、error:src refspec master does not match any
引起該錯誤的原因是,目錄中沒有檔案,空目錄是不能提交上去的;
touch readme
git add readme
git commit -m 'first commit'
git push origin master
按Backspace鍵刪除時,會出現 H
在linux unix 平台的經常使用scanf從鍵盤獲取字元,輸出字元後按backspace鍵刪除時,會出現 h,這對習慣了按backspace鍵刪除的使用者來說,感覺非常彆扭,雖然可以通過ctrl backspace組合鍵實現刪除功能可通過stty命令修改終端配置來實現backspace刪除功能...
vue渲染頁面時會出現變數閃爍
問題描述 在使用vue繫結資料的時候,渲染頁面時會出現變數閃爍,例如 在載入的時候會看到 如圖 解決方案 步驟一 v cloak只要在el掛載的標籤上新增就可以,步驟二 在css裡面要新增 v cloak 這樣就可以防止頁面閃爍了。但是有的時候會不起作用,可能的原因有二 1 v cloak的disp...
與native互動時會出現的問題
1 jsbridge 可以用jsbridge與native互動,這屬於第三方庫,前端後端都需要加jsbridge 2 可以直接呼叫原生的方法,ios window.webkit.messagehandlers.closewebview.postmessage 可以呼叫ios手機下的這個方法,andr...