問題1:
git pull的時候出現檔案過大無法下拉**的問題
現象:error: rpc failed; curl 18 transfer closed with outstanding read data remaining
fatal: the remote end hung up unexpectedly
fatal: protocol error: bad pack header
解決方法:
方法一:在終端輸入 git config http.postbuffer 524288000000 //設定可以下拉大小
方法二:使用ssh方式下拉**
問題2:
git clone的時候出現ssl connect error
現象:fatal: unable to access '': ssl connect error
解決辦法:
在終端輸入 git config --global http.sslverify false //設定跳過ssl證書驗證
如果還不行,可能是ssh版本過低需要公升級ssh
在終端輸入 yum update nss //redhat centos
Android ANR異常及解決方法
在android裡,應用程式的響應性是由activity manager和windowmanager系統服務監視的 當它監測到以下情況中的乙個時,android就會針對特定的應用程式顯示anr 潛在的耗時操作,例如網路或資料庫操作,或者高耗時的計算如改變位圖尺寸,應該在子執行緒裡 或者以資料庫操作為...
Android ANR異常及解決方法
什麼是anr?為什麼會引發anr?如何避免anr?1 執行在主線程裡的任何方法都盡可能少做事情。特別是,activity應該在它的關鍵生命週期方法 如oncreate 和onresume 裡盡可能少的去做建立操作。可以採用重新開啟子執行緒的方式,然後使用handler message的方式做一些操作...
Git使用問題及解決方法大全
方法一 執行以下命令 find type d empty exec touch gitignore ignore everything in this directory except this file gitignore 2 git怎樣刪除未監視的檔案untracked files 主要使用gi...